| Package | Description |
|---|---|
| com.jgoodies.forms.layout |
Contains the core classes of the JGoodies Forms framework:
layout manager, column and row specifications, sizes and cell constraints.
|
| Modifier and Type | Field and Description |
|---|---|
static FormSpec.DefaultAlignment |
RowSpec.BOTTOM
By default put the components in the bottom.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.BOTTOM_ALIGN
By default put the components in the bottom.
|
static FormSpec.DefaultAlignment |
ColumnSpec.CENTER
By default put the components in the center.
|
static FormSpec.DefaultAlignment |
RowSpec.CENTER
By default put the components in the center.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.CENTER_ALIGN
By default put the components in the center.
|
static FormSpec.DefaultAlignment |
ColumnSpec.DEFAULT
Unless overridden the default alignment for a column is FILL.
|
static FormSpec.DefaultAlignment |
RowSpec.DEFAULT
Unless overridden the default alignment for a row is CENTER.
|
private FormSpec.DefaultAlignment |
FormSpec.defaultAlignment
Holds the default alignment that will be used if a cell does not
override this default.
|
static FormSpec.DefaultAlignment |
ColumnSpec.FILL
By default fill the component into the column.
|
static FormSpec.DefaultAlignment |
RowSpec.FILL
By default fill the component into the row.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.FILL_ALIGN
By default fill the column or row.
|
static FormSpec.DefaultAlignment |
ColumnSpec.LEFT
By default put components in the left.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.LEFT_ALIGN
By default put components in the left.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.NO_ALIGN
A special alignment intended for table columns only,
where some cell renderers are not aligned.
|
static FormSpec.DefaultAlignment |
ColumnSpec.NONE
A special alignment value for table column alignment specifications.
|
static FormSpec.DefaultAlignment |
ColumnSpec.RIGHT
By default put components in the right.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.RIGHT_ALIGN
By default put components in the right.
|
static FormSpec.DefaultAlignment |
RowSpec.TOP
By default put the components in the top.
|
(package private) static FormSpec.DefaultAlignment |
FormSpec.TOP_ALIGN
By default put the components in the top.
|
private static FormSpec.DefaultAlignment[] |
FormSpec.VALUES
An array of all enumeration values used to canonicalize
deserialized default alignments.
|
| Modifier and Type | Method and Description |
|---|---|
FormSpec.DefaultAlignment |
FormSpec.getDefaultAlignment()
Returns the default alignment.
|
private static FormSpec.DefaultAlignment |
FormSpec.DefaultAlignment.valueOf(java.lang.String str,
boolean isHorizontal)
Returns a DefaultAlignment that corresponds to the specified
string, null if no such alignment exists.
|
| Modifier and Type | Method and Description |
|---|---|
(package private) void |
FormSpec.setDefaultAlignment(FormSpec.DefaultAlignment defaultAlignment) |
| Constructor and Description |
|---|
ColumnSpec(FormSpec.DefaultAlignment defaultAlignment,
Size size,
double resizeWeight)
Constructs a ColumnSpec for the given default alignment,
size and resize weight.
|
FormSpec(FormSpec.DefaultAlignment defaultAlignment,
Size size,
double resizeWeight)
Constructs a
FormSpec for the given default alignment,
size, and resize weight. |
FormSpec(FormSpec.DefaultAlignment defaultAlignment,
java.lang.String encodedDescription)
Constructs a FormSpec from the specified encoded description.
|
RowSpec(FormSpec.DefaultAlignment defaultAlignment,
Size size,
double resizeWeight)
Constructs a RowSpec from the given default orientation,
size, and resize weight.
|