1 /*
2 * $Id: IClosableCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 * Experimental : Do not use !
9 *
10 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
11 * @version $Revision: 1.18 $ $Date: 2011/06/16 09:29:40 $
12 */
13 public interface IClosableCapability {
14
15 /**
16 * Experimental : Do not use !
17 *
18 * @return <code>true</code> is the component can be closed.
19 */
20 boolean isClosable();
21
22 /**
23 * Experimental : Do not use !
24 *
25 * @param closable
26 */
27 void setClosable(boolean closable);
28 }