Class ColumnSpec
java.lang.Object
com.jgoodies.forms.layout.FormSpec
com.jgoodies.forms.layout.ColumnSpec
- All Implemented Interfaces:
Serializable
Specifies columns in FormLayout by their default orientation,
start size and resizing behavior.
Examples:
The following examples specify a column with FILL alignment, a size of
10 dlu that won't grow.
new ColumnSpec(Sizes.dluX(10));
new ColumnSpec(ColumnSpec.FILL, Sizes.dluX(10), 0.0);
new ColumnSpec(ColumnSpec.FILL, Sizes.dluX(10), ColumnSpec.NO_GROW);
ColumnSpec.decode("10dlu");
ColumnSpec.decode("10dlu:0");
ColumnSpec.decode("fill:10dlu:0");
The FormSpecs provides
predefined frequently used ColumnSpec instances.
- Version:
- $Revision: 1.20 $
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class FormSpec
FormSpec.DefaultAlignment -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Map<String, ColumnSpec> Maps encoded column specifications to ColumnSpec instances.static final FormSpec.DefaultAlignmentBy default put the components in the center.static final FormSpec.DefaultAlignmentUnless overridden the default alignment for a column is FILL.static final FormSpec.DefaultAlignmentBy default fill the component into the column.static final FormSpec.DefaultAlignmentBy default put components in the left.static final FormSpec.DefaultAlignmentA special alignment value for table column alignment specifications.static final FormSpec.DefaultAlignmentBy default put components in the right.Fields inherited from class FormSpec
BOTTOM_ALIGN, CENTER_ALIGN, DEFAULT_GROW, FILL_ALIGN, LEFT_ALIGN, NO_ALIGN, NO_GROW, RIGHT_ALIGN, TOP_ALIGN -
Constructor Summary
ConstructorsModifierConstructorDescriptionColumnSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight) Constructs a ColumnSpec for the given default alignment, size and resize weight.ColumnSpec(Size size) Constructs a ColumnSpec for the given size using the default alignment, and no resizing.privateColumnSpec(String encodedDescription) Constructs a ColumnSpec from the specified encoded description. -
Method Summary
Modifier and TypeMethodDescriptionstatic ColumnSpeccreateGap(ConstantSize gapWidth) Creates and returns aColumnSpecthat represents a gap with the specifiedConstantSize.static ColumnSpecParses the encoded column specification and returns a ColumnSpec object that represents the string.static ColumnSpecParses the encoded column specifications and returns a ColumnSpec object that represents the string.(package private) static ColumnSpecdecodeExpanded(String expandedTrimmedLowerCaseSpec) Decodes an expanded, trimmed, lower case column spec.static ColumnSpec[]decodeSpecs(String encodedColumnSpecs) Parses and splits encoded column specifications using the defaultLayoutMapand returns an array of ColumnSpec objects.static ColumnSpec[]decodeSpecs(String encodedColumnSpecs, LayoutMap layoutMap) Splits and parses the encoded column specifications using the givenLayoutMapand returns an array of ColumnSpec objects.protected booleanReturns if this is a horizontal specification (vs.Methods inherited from class FormSpec
canGrow, encode, getDefaultAlignment, getDefaultAlignmentExplictlySet, getResizeWeight, getSize, maximumSize, setDefaultAlignment, setResizeWeight, setSize, toShortString, toString
-
Field Details
-
LEFT
By default put components in the left. -
CENTER
By default put the components in the center. -
RIGHT
By default put components in the right. -
FILL
By default fill the component into the column. -
NONE
A special alignment value for table column alignment specifications. Some cell renderers shall not be aligned during the renderer preparation.- Since:
- 1.8
-
DEFAULT
Unless overridden the default alignment for a column is FILL. -
CACHE
Maps encoded column specifications to ColumnSpec instances.
-
-
Constructor Details
-
ColumnSpec
Constructs a ColumnSpec for the given default alignment, size and resize weight.The resize weight must be a non-negative double; you can use
NO_GROWas a convenience value for no resize.- Parameters:
defaultAlignment- the column's default alignmentsize- constant, component size or bounded sizeresizeWeight- the column's non-negative resize weight- Throws:
NullPointerException- if thesizeisnullIllegalArgumentException- if the size is invalid or theresizeWeightis negative
-
ColumnSpec
Constructs a ColumnSpec for the given size using the default alignment, and no resizing.- Parameters:
size- constant size, component size, or bounded size- Throws:
IllegalArgumentException- if the size is invalid
-
ColumnSpec
Constructs a ColumnSpec from the specified encoded description. The description will be parsed to set initial values.Unlike the factory method
decode(String), this constructor does not expand layout variables, and it cannot vend cached objects.- Parameters:
encodedDescription- the encoded description
-
-
Method Details
-
createGap
Creates and returns aColumnSpecthat represents a gap with the specifiedConstantSize.- Parameters:
gapWidth- specifies the gap width- Returns:
- a ColumnSpec that describes a horizontal gap
- Throws:
NullPointerException- ifgapWidthisnull- Since:
- 1.2
-
decode
Parses the encoded column specification and returns a ColumnSpec object that represents the string. Variables are expanded using the default LayoutMap.- Parameters:
encodedColumnSpec- the encoded column specification- Returns:
- a ColumnSpec instance for the given specification
- Throws:
NullPointerException- ifencodedColumnSpecisnull- Since:
- 1.2
- See Also:
-
decode
Parses the encoded column specifications and returns a ColumnSpec object that represents the string. Variables are expanded using the given LayoutMap.- Parameters:
encodedColumnSpec- the encoded column specificationlayoutMap- expands layout column variables- Returns:
- a ColumnSpec instance for the given specification
- Throws:
NullPointerException- ifencodedColumnSpecorlayoutMapisnullIllegalArgumentException- ifencodedColumnSpecis empty or whitespace- Since:
- 1.2
- See Also:
-
decodeExpanded
Decodes an expanded, trimmed, lower case column spec. Called by the public ColumnSpec factory methods. Looks up and returns the ColumnSpec object from the cache - if any, or constructs and returns a new ColumnSpec instance.- Parameters:
expandedTrimmedLowerCaseSpec- the encoded column specification- Returns:
- a ColumnSpec for the given encoded column spec
-
decodeSpecs
Parses and splits encoded column specifications using the defaultLayoutMapand returns an array of ColumnSpec objects.- Parameters:
encodedColumnSpecs- comma separated encoded column specifications- Returns:
- an array of decoded column specifications
- Throws:
NullPointerException- ifencodedColumnSpecsisnull- See Also:
-
decodeSpecs
Splits and parses the encoded column specifications using the givenLayoutMapand returns an array of ColumnSpec objects.- Parameters:
encodedColumnSpecs- comma separated encoded column specificationslayoutMap- expands layout column variables- Returns:
- an array of decoded column specifications
- Throws:
NullPointerException- ifencodedColumnSpecsorlayoutMapisnull- Since:
- 1.2
- See Also:
-
isHorizontal
protected boolean isHorizontal()Returns if this is a horizontal specification (vs. vertical). Used to distinct between horizontal and vertical dialog units, which have different conversion factors.- Specified by:
isHorizontalin classFormSpec- Returns:
- always
true(for horizontal)
-