1 /*
2 * $Id: IClientSelectionFullStateCapability.java,v 1.3 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.3 $ $Date: 2008/01/29 10:59:56 $
10 */
11 public interface IClientSelectionFullStateCapability extends
12 IClientFullStateCapability {
13
14 /**
15 * Returns a boolean value indicating whether the client should know about
16 * the component's full state even if only a part of the data is present
17 * (AJAX).
18 *
19 * @return boolean
20 */
21 int getClientSelectionFullState();
22
23 /**
24 * Sets a boolean value indicating whether the client should know about the
25 * component's full state even if only a part of the data is present (AJAX).
26 *
27 * @param clientSelectionFullState
28 * boolean
29 */
30 void setClientSelectionFullState(int clientSelectionFullState);
31 }