1 /*
2 * $Id: IExpandableCapability.java,v 1.1 2007/05/15 09:51:38 oeuillot Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 *
9 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
10 * @version $Revision: 1.1 $ $Date: 2007/05/15 09:51:38 $
11 */
12 public interface IExpandableCapability {
13
14 /**
15 * Returns a boolean value indicating wether the component can receive a
16 * user's expand command.
17 *
18 * @return expandable boolean property
19 */
20 boolean isExpandable();
21
22 /**
23 * Sets a boolean value indicating wether the component can receive a user's
24 * expand command.
25 *
26 * @param expandable
27 * expandable boolean property
28 */
29 void setExpandable(boolean expandable);
30 }