public class GroupLayout.SequentialGroup extends GroupLayout.Group
Group that positions and sizes its elements sequentially, one after another. This class has no public constructor, use the
createSequentialGroup method to create one.
In order to align a SequentialGroup along the baseline of a baseline aligned ParallelGroup you need to specify which of the elements of the SequentialGroup is used to determine the baseline. The element used to calculate the baseline is specified using one of the add methods that take a boolean. The last element added with a value of true for useAsBaseline is used to calculate the baseline.
GroupLayout.createSequentialGroup()
| Modifier and Type | Method and Description |
|---|---|
GroupLayout |
addComponent(boolean useAsBaseline, Component
Adds a
Component to this
Group.
|
GroupLayout |
addComponent(boolean useAsBaseline, Component
Adds a
Component to this
Group with the specified size.
|
GroupLayout |
addComponent(Component
Adds a
Component to this
Group.
|
GroupLayout |
addComponent(Component
Adds a
Component to this
Group with the specified size.
|
GroupLayout |
addContainerGap()
Adds an element representing the preferred gap between an edge the container and components that touch the border of the container.
|
GroupLayout |
addContainerGap(int pref, int max)
Adds an element representing the preferred gap between one edge of the container and the next or previous
Component with the specified size.
|
GroupLayout |
addGap(int size)
Adds a rigid gap to this
Group.
|
GroupLayout |
addGap(int min, int pref, int max)
Adds a gap to this
Group with the specified size.
|
GroupLayout |
addGroup(boolean useAsBaseline, GroupLayout
Adds a
Group to this
Group.
|
GroupLayout |
addGroup(GroupLayout
Adds a
Group to this
Group.
|
GroupLayout |
addPreferredGap(JComponent
Adds an element representing the preferred gap between two components.
|
GroupLayout |
addPreferredGap(JComponent
Adds an element representing the preferred gap between two components.
|
GroupLayout |
addPreferredGap(LayoutStyle
Adds an element representing the preferred gap between the nearest components.
|
GroupLayout |
addPreferredGap(LayoutStyle
Adds an element representing the preferred gap between the nearest components.
|
public GroupLayout.SequentialGroup addGroup(GroupLayout .Group group)
Group to this
Group.
addGroup in class
GroupLayout.Group
group - the
Group to add
Group
public GroupLayout.SequentialGroup addGroup(boolean useAsBaseline, GroupLayout .Group group)
Group to this
Group.
group - the
Group to add
useAsBaseline - whether the specified
Group should be used to calculate the baseline for this
Group
Group
public GroupLayout.SequentialGroup addComponent(Component component)
Component to this
Group.
addComponent in class
GroupLayout.Group
component - the
Component to add
Group
public GroupLayout.SequentialGroup addComponent(boolean useAsBaseline, Component component)
Component to this
Group.
useAsBaseline - whether the specified
Component should be used to calculate the baseline for this
Group
component - the
Component to add
Group
public GroupLayout.SequentialGroup addComponent(Component component, int min, int pref, int max)
Component to this
Group with the specified size.
addComponent in class
GroupLayout.Group
component - the
Component to add
min - the minimum size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
pref - the preferred size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
max - the maximum size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
Group
public GroupLayout.SequentialGroup addComponent(boolean useAsBaseline, Component component, int min, int pref, int max)
Component to this
Group with the specified size.
useAsBaseline - whether the specified
Component should be used to calculate the baseline for this
Group
component - the
Component to add
min - the minimum size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
pref - the preferred size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
max - the maximum size or one of
DEFAULT_SIZE or
PREFERRED_SIZE
Group
public GroupLayout.SequentialGroup addGap(int size)
Group.
addGap in class
GroupLayout.Group
size - the size of the gap
Group
public GroupLayout.SequentialGroup addGap(int min, int pref, int max)
Group with the specified size.
addGap in class
GroupLayout.Group
min - the minimum size of the gap
pref - the preferred size of the gap
max - the maximum size of the gap
Group
public GroupLayout.SequentialGroup addPreferredGap(JComponent comp1, JComponent comp2, LayoutStyle .ComponentPlacement type)
comp1 - the first component
comp2 - the second component
type - the type of gap; one of the constants defined by
LayoutStyle
SequentialGroup
IllegalArgumentException - if
type,
comp1 or
comp2 is
null
LayoutStyle
public GroupLayout.SequentialGroup addPreferredGap(JComponent comp1, JComponent comp2, LayoutStyle .ComponentPlacement type, int pref, int max)
comp1 - the first component
comp2 - the second component
type - the type of gap
pref - the preferred size of the grap; one of
DEFAULT_SIZE or a value >= 0
max - the maximum size of the gap; one of
DEFAULT_SIZE,
PREFERRED_SIZE or a value >= 0
SequentialGroup
IllegalArgumentException - if
type,
comp1 or
comp2 is
null
LayoutStyle
public GroupLayout.SequentialGroup addPreferredGap(LayoutStyle .ComponentPlacement type)
0.
The element created to represent the gap is not resizable.
type - the type of gap; one of
LayoutStyle.ComponentPlacement.RELATED or
LayoutStyle.ComponentPlacement.UNRELATED
SequentialGroup
IllegalArgumentException - if
type is not one of
LayoutStyle.ComponentPlacement.RELATED or
LayoutStyle.ComponentPlacement.UNRELATED
LayoutStyle
public GroupLayout.SequentialGroup addPreferredGap(LayoutStyle .ComponentPlacement type, int pref, int max)
type - the type of gap; one of
LayoutStyle.ComponentPlacement.RELATED or
LayoutStyle.ComponentPlacement.UNRELATED
pref - the preferred size of the grap; one of
DEFAULT_SIZE or a value >= 0
max - the maximum size of the gap; one of
DEFAULT_SIZE,
PREFERRED_SIZE or a value >= 0
SequentialGroup
IllegalArgumentException - if
type is not one of
LayoutStyle.ComponentPlacement.RELATED or
LayoutStyle.ComponentPlacement.UNRELATED
LayoutStyle
public GroupLayout.SequentialGroup addContainerGap()
The element created to represent the gap is not resizable.
SequentialGroup
public GroupLayout.SequentialGroup addContainerGap(int pref, int max)
Component with the specified size. This has no effect if the next or previous element is not a
Component and does not touch one edge of the parent container.
pref - the preferred size; one of
DEFAULT_SIZE or a value >= 0
max - the maximum size; one of
DEFAULT_SIZE,
PREFERRED_SIZE or a value >= 0
SequentialGroup