View Javadoc

1   /*
2    * $Id: IStyleContentAccessorHandler.java,v 1.2 2009/03/04 10:11:19 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.style;
5   
6   import org.rcfaces.core.internal.contentAccessor.ICompositeContentAccessorHandler;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.2 $ $Date: 2009/03/04 10:11:19 $
12   */
13  public interface IStyleContentAccessorHandler extends
14          ICompositeContentAccessorHandler {
15  
16      String STYLE_CONTENT_PROVIDER_ID = "org.rcfaces.core.STYLE_CONTENT_PROVIDER";
17  
18      String MERGE_FILTER_NAME = "merge";
19  
20      IStyleOperation getStyleOperation(String operationId);
21  }