1 /*
2 * $Id: IHeightRangeCapability.java,v 1.1 2010/05/12 07:39:56 jbmeslin Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: jbmeslin $)
9 * @version $Revision: 1.1 $ $Date: 2010/05/12 07:39:56 $
10 */
11 public interface IHeightRangeCapability extends IHeightCapability {
12
13 /**
14 * Returns an int value specifying the maximum height in pixels (if
15 * resizeable).
16 *
17 * @return max height
18 */
19 int getMaxHeight();
20
21 /**
22 * Sets an int value specifying the maximum height in pixels (if resizeable).
23 *
24 * @param maxHeight
25 * max height
26 */
27 void setMaxHeight(int maxHeight);
28
29 /**
30 * Returns an int value specifying the minimum height in pixels (if
31 * resizeable).
32 *
33 * @return min height
34 */
35 int getMinHeight();
36
37 /**
38 * Sets an int value specifying the minimum height in pixels (if resizeable).
39 *
40 * @param minHeight
41 * min height
42 */
43 void setMinHeight(int minHeight);
44 }