Class gjt.ColumnLayout
All Packages Class Hierarchy This Package Previous Next Index
Class gjt.ColumnLayout
java.lang.Object
|
+----gjt.ColumnLayout
- public class ColumnLayout
- extends Object
- implements LayoutManager
ColumnLayout lays out components in a column. At
construction time, both horizontal orientation and vertical
orientation may be specified, along with the gap to use
between components.
Horizontal orientation must be one of the following:
- LEFT
- CENTER
- RIGHT
Vertical orientation must be one of the following:
- TOP
- CENTER
- BOTTOM
- See Also:
- Orientation, RowLayout
-
ColumnLayout()
-
-
ColumnLayout(int)
-
-
ColumnLayout(Orientation, Orientation)
-
-
ColumnLayout(Orientation, Orientation, int)
-
-
addLayoutComponent(String, Component)
-
-
layoutContainer(Container)
-
-
minimumLayoutSize(Container)
-
-
preferredLayoutSize(Container)
-
-
removeLayoutComponent(Component)
-
ColumnLayout
public ColumnLayout()
ColumnLayout
public ColumnLayout(int gap)
ColumnLayout
public ColumnLayout(Orientation horizontalOrient,
Orientation verticalOrient)
ColumnLayout
public ColumnLayout(Orientation horizontalOrient,
Orientation verticalOrient,
int gap)
addLayoutComponent
public void addLayoutComponent(String name,
Component comp)
removeLayoutComponent
public void removeLayoutComponent(Component comp)
preferredLayoutSize
public Dimension preferredLayoutSize(Container target)
minimumLayoutSize
public Dimension minimumLayoutSize(Container target)
layoutContainer
public void layoutContainer(Container target)
All Packages Class Hierarchy This Package Previous Next Index