View Javadoc

1   /*
2    * $Id: ICheckableCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3    * 
4    */
5   package org.rcfaces.core.component.capability;
6   
7   /**
8    * A boolean value indicating whether the component can be checked. cf.
9    * checkCardinality.
10   * 
11   * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12   */
13  public interface ICheckableCapability {
14  
15      /**
16       * Returns a boolean value indicating whether the component can be checked.
17       * 
18       * @return boolean
19       */
20      boolean isCheckable();
21  
22      /**
23       * Sets a boolean value indicating whether the component can be checked.
24       * 
25       * @param checkable
26       *            boolean
27       */
28      void setCheckable(boolean checkable);
29  
30  }