Uses of Class
com.privatejgoodies.forms.layout.RowSpec
Packages that use RowSpec
-
Uses of RowSpec in com.privatejgoodies.forms.layout
Fields in com.privatejgoodies.forms.layout declared as RowSpecModifier and TypeFieldDescriptionstatic final RowSpec
FormSpecs.BUTTON_ROWSPEC
Describes a logical row for a fixed size button.static final RowSpec
FormSpecs.DEFAULT_ROWSPEC
An unmodifiableRowSpec
that determines its preferred height by computing the maximum of all column component preferred heights and its minimum height by computing all column component minimum heights.static final RowSpec
FormSpecs.GLUE_ROWSPEC
An unmodifiableRowSpec
that has an initial height of 0 pixels and that grows.static final RowSpec
FormSpecs.LABEL_COMPONENT_GAP_ROWSPEC
Describes a logical horizontal gap between a label and an associated component.static final RowSpec
FormSpecs.LINE_GAP_ROWSPEC
Describes the logical vertical default gap between two rows in the grid.static final RowSpec
FormSpecs.MIN_ROWSPEC
An unmodifiableRowSpec
that determines its height by computing the maximum of all column component minimum heights.static final RowSpec
FormSpecs.NARROW_LINE_GAP_ROWSPEC
Describes a logical vertical narrow gap between two rows in the grid.static final RowSpec
FormSpecs.PARAGRAPH_GAP_ROWSPEC
Describes the logical vertical default gap between two paragraphs in the layout grid.static final RowSpec
FormSpecs.PREF_ROWSPEC
An unmodifiableRowSpec
that determines its height by computing the maximum of all column component preferred heights.static final RowSpec
FormSpecs.RELATED_GAP_ROWSPEC
Describes a logical vertical gap between two related components.static final RowSpec
FormSpecs.UNRELATED_GAP_ROWSPEC
Describes a logical vertical gap between two unrelated components.Methods in com.privatejgoodies.forms.layout that return RowSpecModifier and TypeMethodDescriptionstatic RowSpec
RowSpec.createGap
(ConstantSize gapHeight) Creates and returns aRowSpec
that represents a gap with the specifiedConstantSize
.static RowSpec
Parses the encoded row specification and returns a RowSpec object that represents the string.static RowSpec
Parses the encoded row specifications and returns a RowSpec object that represents the string.static RowSpec[]
RowSpec.decodeSpecs
(String encodedRowSpecs) Parses and splits encoded row specifications using the defaultLayoutMap
and returns an array of RowSpec objects.static RowSpec[]
RowSpec.decodeSpecs
(String encodedRowSpecs, LayoutMap layoutMap) Parses and splits encoded row specifications using the givenLayoutMap
and returns an array of RowSpec objects.FormLayout.getRowSpec
(int rowIndex) Returns theRowSpec
at the specified row index.Methods in com.privatejgoodies.forms.layout with parameters of type RowSpecModifier and TypeMethodDescriptionvoid
Appends the given row specification to the bottom of all rows.void
Inserts the specified column at the specified position.Associates the specified ColumnSpec with the specified key in this map.void
FormLayout.setRowSpec
(int rowIndex, RowSpec rowSpec) Sets the RowSpec at the specified row index.Constructors in com.privatejgoodies.forms.layout with parameters of type RowSpecModifierConstructorDescriptionFormLayout
(ColumnSpec[] colSpecs, RowSpec[] rowSpecs) Constructs a FormLayout using the given column and row specifications.