View Javadoc

1   /*
2    * $Id: IContentAccessorHandler.java,v 1.5 2008/12/09 16:37:13 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.contentAccessor;
5   
6   import javax.faces.context.FacesContext;
7   
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
12   * @version $Revision: 1.5 $ $Date: 2008/12/09 16:37:13 $
13   */
14  public interface IContentAccessorHandler {
15  
16      String getId();
17  
18      IContentAccessor handleContent(FacesContext facesContext,
19              IContentAccessor contentAccessor,
20              IGeneratedResourceInformation generatedInformationRef[],
21              IGenerationResourceInformation generationInformation);
22  }