Uses of Class
org.jdesktop.layout.GroupLayout.Group
-
-
Uses of GroupLayout.Group in org.jdesktop.layout
Subclasses of GroupLayout.Group in org.jdesktop.layout Modifier and Type Class Description class
GroupLayout.ParallelGroup
AGroup
that lays out its elements on top of each other.class
GroupLayout.SequentialGroup
AGroup
that lays out its elements sequentially, one after another.Methods in org.jdesktop.layout that return GroupLayout.Group Modifier and Type Method Description GroupLayout.Group
GroupLayout. getHorizontalGroup()
Returns theGroup
that is responsible for layout along the horizontal axis.GroupLayout.Group
GroupLayout. getVerticalGroup()
Returns theParallelGroup
that is responsible for layout along the vertical axis.Methods in org.jdesktop.layout with parameters of type GroupLayout.Group Modifier and Type Method Description GroupLayout.ParallelGroup
GroupLayout.ParallelGroup. add(int alignment, GroupLayout.Group group)
Adds the specifiedGroup
as a child of this group.GroupLayout.ParallelGroup
GroupLayout.ParallelGroup. add(GroupLayout.Group group)
Adds the specifiedGroup
.GroupLayout.SequentialGroup
GroupLayout.SequentialGroup. add(boolean useAsBaseline, GroupLayout.Group group)
Adds aGroup
to thisGroup
.GroupLayout.SequentialGroup
GroupLayout.SequentialGroup. add(GroupLayout.Group group)
Adds the specifiedGroup
to thisSequentialGroup
void
GroupLayout. setHorizontalGroup(GroupLayout.Group group)
Sets theGroup
that is responsible for layout along the horizontal axis.void
GroupLayout. setVerticalGroup(GroupLayout.Group group)
Sets theGroup
that is responsible for layout along the vertical axis.
-