com.jgoodies.forms.layout |
|
Java Source File Name | Type | Comment |
BoundedSize.java | Class | Describes sizes that provide lower and upper bounds as used by the JGoodies
com.jgoodies.forms.layout.FormLayout . |
CellConstraints.java | Class | Defines constraints for components that are layed out with the FormLayout.
Defines the components display area: grid x, grid y, grid width
(column span), grid height (row span), horizontal alignment and vertical
alignment.
Most methods return this object to enable method chaining.
You can set optional insets in a constructor. |
ColumnSpec.java | Class | Specifies columns in
FormLayout by their default orientation, start
size and resizing behavior. |
ConstantSize.java | Class | An implementation of the
Size interface that represents constant
sizes described by a value and unit, for example: 10 pixel,
15 point or 4 dialog units. |
FormLayout.java | Class | FormLayout is a powerful, flexible and precise general purpose layout
manager. |
FormSpec.java | Class | An abstract class that specifies columns and rows in
FormLayout by
their default alignment, start size and resizing behavior. |
RowSpec.java | Class | Specifies rows in in
FormLayout by their default orientation, start
size and resizing behavior. |
Size.java | Interface | An interface that describes sizes as used by the
FormLayout :
component measuring sizes, constant sizes with value and unit, and bounded
sizes that provide lower and upper bounds for a size. |
Sizes.java | Class | Consists only of static methods that create and convert sizes as required by
the
FormLayout . |