Class gjt.RowLayout
All Packages Class Hierarchy This Package Previous Next Index
Class gjt.RowLayout
java.lang.Object
|
+----gjt.RowLayout
- public class RowLayout
- extends Object
- implements LayoutManager
RowLayout lays out components in a row. 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:
- ColumnLayout, Orientation
-
RowLayout()
-
-
RowLayout(int)
-
-
RowLayout(Orientation, Orientation)
-
-
RowLayout(Orientation, Orientation, int)
-
-
addLayoutComponent(String, Component)
-
-
layoutContainer(Container)
-
-
minimumLayoutSize(Container)
-
-
preferredLayoutSize(Container)
-
-
removeLayoutComponent(Component)
-
RowLayout
public RowLayout()
RowLayout
public RowLayout(int gap)
RowLayout
public RowLayout(Orientation horizontalOrient,
Orientation verticalOrient)
RowLayout
public RowLayout(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