Lines Matching refs:GroupLayout

39  * {@code GroupLayout} is a {@code LayoutManager} that hierarchically
41 * {@code GroupLayout} is intended for use by builders, but may be
44 * GroupLayout} supports two types of groups. A sequential group
51 * size. In addition {@code GroupLayout} supports a preferred gap,
66 * {@code GroupLayout} treats each axis independently. That is, there
121 * {@code GroupLayout} provides the ability to insert gaps between
133 * GroupLayout layout = new GroupLayout(panel);
145 * GroupLayout.SequentialGroup hGroup = layout.createSequentialGroup();
160 * GroupLayout.SequentialGroup vGroup = layout.createSequentialGroup();
200 * use the create methods of {@code GroupLayout}.
208 public class GroupLayout implements LayoutManager2 {
366 * Creates a {@code GroupLayout} for the specified {@code Container}.
368 * @param host the {@code Container} the {@code GroupLayout} is
372 public GroupLayout(Container host) {
435 * {@code GroupLayout} is managine, it will be added to the
642 * Refer to {@link GroupLayout.ParallelGroup ParallelGroup} for details on
652 * @see GroupLayout.ParallelGroup
1117 "GroupLayout can only be used with one Container at a time");
1203 * Returns a string representation of this {@code GroupLayout}.
1208 * @return a string representation of this {@code GroupLayout}
1425 * operations supported by {@code GroupLayout}: laying out
1431 * created from one {@code GroupLayout} and using it with another
1458 * group.addComponent(myComponent, GroupLayout.PREFERRED_SIZE,
1459 * GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE);
2419 * {@code GroupLayout} for the minimum, preferred or maximum size or
2964 // Container GroupLayout is the LayoutManager for.
3643 honorsVisibility = GroupLayout.this.getHonorsVisibility();