View Javadoc

1   /*
2    * $Id: IDeltaPropertiesAccessor.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.internal.component;
6   
7   import javax.faces.context.FacesContext;
8   
9   /**
10   * 
11   * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
12   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
13   */
14  public interface IDeltaPropertiesAccessor extends IPropertiesAccessor {
15      boolean hasModifiedProperties();
16  
17      void commitProperties(FacesContext facesContext);
18  }