Modifier and Type | Method and Description |
---|---|
AC |
AC.align(String side)
Specifies the current row/column's columns default alignment for its components.
|
AC |
AC.align(String side,
int... indexes)
Specifies the indicated rows'/columns' columns default alignment for its components.
|
AC |
AC.count(int size)
Sets the total number of rows/columns to
size . |
AC |
AC.fill()
Specifies that the current row/column's component should grow by default.
|
AC |
AC.fill(int... indexes)
Specifies that the indicated rows'/columns' component should grow by default.
|
AC |
AC.gap()
Specifies the gap size to be the default one AND moves to the next column/row.
|
AC |
AC.gap(String size)
Specifies the gap size to
size AND moves to the next column/row. |
AC |
AC.gap(String size,
int... indexes)
Specifies the indicated rows'/columns' gap size to
size . |
AC |
AC.grow()
Specifies the current row/column's grow weight within columns/rows with the
grow priority 100f. |
AC |
AC.grow(float w)
Specifies the current row/column's grow weight within columns/rows with the same
grow priority . |
AC |
AC.grow(float w,
int... indexes)
Specifies the indicated rows'/columns' grow weight within columns/rows with the same
grow priority . |
AC |
AC.growPrio(int p)
Specifies the current row/column's grow priority.
|
AC |
AC.growPrio(int p,
int... indexes)
Specifies the indicated rows'/columns' grow priority.
|
AC |
AC.index(int i)
Sets the current row/column to
i . |
AC |
AC.noGrid()
Specifies that the current row/column should not be grid-like.
|
AC |
AC.noGrid(int... indexes)
Specifies that the indicated rows/columns should not be grid-like.
|
static AC |
ConstraintParser.parseColumnConstraints(String s)
Parses the column or rows constraints.
|
static AC |
ConstraintParser.parseRowConstraints(String s)
Parses the column or rows constraints.
|
AC |
AC.shrink()
Specifies that the current row/column's shrink weight within the columns/rows with the
shrink priority 100f. |
AC |
AC.shrink(float w)
Specifies that the current row/column's shrink weight within the columns/rows with the same
shrink priority . |
AC |
AC.shrink(float w,
int... indexes)
Specifies the indicated rows'/columns' shrink weight within the columns/rows with the same
shrink priority . |
AC |
AC.shrinkPrio(int p)
Specifies the current row/column's shrink priority.
|
AC |
AC.shrinkPrio(int p,
int... indexes)
Specifies the indicated rows'/columns' shrink priority.
|
AC |
AC.shrinkWeight(float w)
Deprecated.
in 3.7.2. Use
shrink(float) instead. |
AC |
AC.shrinkWeight(float w,
int... indexes)
Deprecated.
in 3.7.2. Use
shrink(float, int...) instead. |
AC |
AC.size(String s)
Specifies the current row/column's min and/or preferred and/or max size.
|
AC |
AC.size(String size,
int... indexes)
Specifies the indicated rows'/columns' min and/or preferred and/or max size.
|
AC |
AC.sizeGroup()
Specifies that the current row/column should be put in the size group
s and will thus share the same size
constraints as the other components in the group. |
AC |
AC.sizeGroup(String s)
Specifies that the current row/column should be put in the size group
s and will thus share the same size
constraints as the other components in the group. |
AC |
AC.sizeGroup(String s,
int... indexes)
Specifies that the indicated rows/columns should be put in the size group
s and will thus share the same size
constraints as the other components in the group. |
Constructor and Description |
---|
Grid(ContainerWrapper container,
LC lc,
AC rowConstr,
AC colConstr,
Map<? extends ComponentWrapper,CC> ccMap,
ArrayList<LayoutCallback> callbackList)
Constructor.
|
Copyright © 2007–2021. All rights reserved.