View Javadoc

1   /*
2    * $Id: IClientFullStateCapability.java,v 1.1 2008/01/29 10:59:56 oeuillot Exp $
3    */
4   package org.rcfaces.core.component.capability;
5   
6   /**
7    * 
8    * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9    * @version $Revision: 1.1 $ $Date: 2008/01/29 10:59:56 $
10   */
11  public interface IClientFullStateCapability {
12  
13      int NONE_CLIENT_FULL_STATE = 0;
14  
15      int ONEWAY_CLIENT_FULL_STATE = 1;
16  
17      int TWOWAYS_CLIENT_FULL_STATE = 2;
18  
19      int DEFAULT_CLIENT_FULL_STATE = NONE_CLIENT_FULL_STATE;
20  
21      /**
22       * @deprecated Replaced by ONEWAY_CLIENT_FULL_STATE
23       */
24      int TRUE_CLIENT_FULL_STATE = ONEWAY_CLIENT_FULL_STATE;
25  
26      /**
27       * @deprecated Replaced by NONE_CLIENT_FULL_STATE
28       */
29      int FALSE_CLIENT_FULL_STATE = NONE_CLIENT_FULL_STATE;
30  }