1 /*
2 * $Id: ICheckedCapability.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 the state of the component.
9 *
10 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
11 */
12 public interface ICheckedCapability {
13
14 /**
15 * Returns a boolean value indicating the state of the component.
16 *
17 * @return boolean
18 */
19 boolean isChecked();
20
21 /**
22 * Sets a boolean value indicating the state of the component.
23 *
24 * @param checked
25 * boolean
26 */
27 void setChecked(boolean checked);
28
29 }