1 /*
2 * $Id: IResizableCapability.java,v 1.18 2011/06/16 09:29:40 jbmeslin Exp $
3 *
4 */
5 package org.rcfaces.core.component.capability;
6
7 /**
8 *
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 IResizableCapability {
14
15 /**
16 * Returns a boolean value indicating wether the component can be resized by
17 * the user.
18 *
19 * @return resizeable boolean property
20 */
21 boolean isResizable();
22
23 /**
24 * Sets a boolean value indicating wether the component can be resized by
25 * the user.
26 *
27 * @param resizable
28 * resizeable boolean property
29 */
30 void setResizable(boolean resizable);
31 }