View Javadoc

1   /*
2    * $Id: IScriptContentAccessorHandler.java,v 1.1 2008/03/17 14:30:48 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.script;
5   
6   import org.rcfaces.core.internal.contentAccessor.ICompositeContentAccessorHandler;
7   import org.rcfaces.core.internal.contentAccessor.IContentAccessor;
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.1 $ $Date: 2008/03/17 14:30:48 $
13   */
14  public interface IScriptContentAccessorHandler extends
15          ICompositeContentAccessorHandler {
16  
17      String SCRIPT_CONTENT_PROVIDER_ID = "org.rcfaces.core.SCRIPT_CONTENT_PROVIDER";
18  
19      IScriptOperation getScriptOperation(String operationId);
20  
21      boolean isOperationSupported(String operationId,
22              IContentAccessor contentAccessor);
23  }