Package com.jgoodies.forms.layout
Class FormSpec
- java.lang.Object
-
- com.jgoodies.forms.layout.FormSpec
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ColumnSpec,RowSpec
public abstract class FormSpec extends java.lang.Object implements java.io.SerializableAn abstract class that specifies columns and rows in FormLayout by their default alignment, start size and resizing behavior. API users will use the subclassesColumnSpecandRowSpec.Also implements the parser for encoded column and row specifications and provides parser convenience behavior for its subclasses ColumnSpec and RowSpec.
TODO: Consider extracting the parser role to a separate class.
- Version:
- $Revision: 1.22 $
- Author:
- Karsten Lentzsch
- See Also:
ColumnSpec,RowSpec,FormLayout,CellConstraints, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classFormSpec.DefaultAlignmentAn ordinal-based serializable typesafe enumeration for the column and row default alignment types.
-
Field Summary
Fields Modifier and Type Field Description static doubleDEFAULT_GROWThe default resize weight.static doubleNO_GROWGives a column or row a fixed size.
-
Constructor Summary
Constructors Modifier Constructor Description protectedFormSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight)Constructs aFormSpecfor the given default alignment, size, and resize weight.protectedFormSpec(FormSpec.DefaultAlignment defaultAlignment, java.lang.String encodedDescription)Constructs a FormSpec from the specified encoded description.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Stringencode()Returns a short and parseable string representation of this form specification.FormSpec.DefaultAlignmentgetDefaultAlignment()Returns the default alignment.doublegetResizeWeight()Returns the current resize weight.SizegetSize()Returns the size.java.lang.StringtoShortString()Returns a string representation of this form specification.java.lang.StringtoString()Returns a string representation of this form specification.
-
-
-
Field Detail
-
NO_GROW
public static final double NO_GROW
Gives a column or row a fixed size.- See Also:
- Constant Field Values
-
DEFAULT_GROW
public static final double DEFAULT_GROW
The default resize weight.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FormSpec
protected FormSpec(FormSpec.DefaultAlignment defaultAlignment, Size size, double resizeWeight)
Constructs aFormSpecfor the given default alignment, size, and resize weight. The resize weight must be a non-negative double; you can useNONEas a convenience value for no resize.- Parameters:
defaultAlignment- the spec's default alignmentsize- a constant, component or bounded sizeresizeWeight- the spec resize weight- Throws:
java.lang.NullPointerException- if thesizeisnulljava.lang.IllegalArgumentException- if theresizeWeightis negative
-
FormSpec
protected FormSpec(FormSpec.DefaultAlignment defaultAlignment, java.lang.String encodedDescription)
Constructs a FormSpec from the specified encoded description. The description will be parsed to set initial values.- Parameters:
defaultAlignment- the default alignmentencodedDescription- the encoded description
-
-
Method Detail
-
getDefaultAlignment
public final FormSpec.DefaultAlignment getDefaultAlignment()
Returns the default alignment.- Returns:
- the default alignment
-
getSize
public final Size getSize()
Returns the size.- Returns:
- the size
-
getResizeWeight
public final double getResizeWeight()
Returns the current resize weight.- Returns:
- the resize weight.
-
toString
public final java.lang.String toString()
Returns a string representation of this form specification. The string representation consists of three elements separated by a colon (":"), first the alignment, second the size, and third the resize spec.This method does not return an encoded version of this object; the contrary is the case. Many instances will return a string that cannot be parsed.
Note: The string representation may change at any time. For parsing use
encode()instead.- Overrides:
toStringin classjava.lang.Object- Returns:
- a string representation of the form specification.
-
toShortString
public final java.lang.String toShortString()
Returns a string representation of this form specification. The string representation consists of three elements separated by a colon (":"), first the alignment, second the size, and third the resize spec.This method does not return an encoded version of this object; the contrary is the case. Many instances will return a string that cannot be parsed.
Note: The string representation may change at any time. For parsing use
encode()instead.- Returns:
- a string representation of the form specification.
-
encode
public final java.lang.String encode()
Returns a short and parseable string representation of this form specification. The string will omit the alignment and resize specifications if these are the default values.- Returns:
- a string representation of the form specification.
- Since:
- 1.2
- See Also:
for a more verbose string representation
-
-