| java.lang.Object com.izforge.izpack.gui.TwoColumnConstraints
Field Summary | |
final public static int | BOTH | final public static int | CENTER | final public static int | EAST | final public static int | EASTONLY | final public static int | LEFT | final public static int | NORTH | final public static int | RIGHT | final public static int | WEST | final public static int | WESTONLY | public int | align How to align the associated component, LEFT , CENTER or
RIGHT . | Component | component | public boolean | indent If set to true, the indent setting in the layout manager will be applied. | public int | position Indicates where to place the associated component. | public boolean | stretch If set to true the associated component will be allowed to stretch to the width of the entire
avaiable space. |
Method Summary | |
public Object | clone() Creates a copy of this two column constraint. |
BOTH | final public static int BOTH(Code) | | |
CENTER | final public static int CENTER(Code) | | |
EAST | final public static int EAST(Code) | | |
EASTONLY | final public static int EASTONLY(Code) | | |
LEFT | final public static int LEFT(Code) | | |
NORTH | final public static int NORTH(Code) | | |
RIGHT | final public static int RIGHT(Code) | | |
WEST | final public static int WEST(Code) | | |
WESTONLY | final public static int WESTONLY(Code) | | |
align | public int align(Code) | | How to align the associated component, LEFT , CENTER or
RIGHT . Note that this setting only taks effect in the component is placed in
the title margin.
|
indent | public boolean indent(Code) | | If set to true, the indent setting in the layout manager will be applied.
|
position | public int position(Code) | | Indicates where to place the associated component. NORTH will place the
component in the title margin. WEST will place the component in the left
column and EAST will place it in the right column. If BOTH is
used, the component will straddle both columns. WESTONLY and EASTONLY
will place the element accordingly but make sure that nothing is placed in the opposite
column.
|
stretch | public boolean stretch(Code) | | If set to true the associated component will be allowed to stretch to the width of the entire
avaiable space.
|
clone | public Object clone()(Code) | | Creates a copy of this two column constraint.
a copy of this TwoColumnConstraints |
|
|