Uses of Class
com.jgoodies.forms.layout.ColumnSpec
Packages that use ColumnSpec
Package
Description
Contains optional builder classes of the Forms framework.
Consists of optional Forms framework factory classes that assist you
in building consistent forms quickly.
Contains the core classes of the JGoodies Forms framework:
layout manager, column and row specifications, sizes and cell constraints.
-
Uses of ColumnSpec in com.jgoodies.forms.builder
Methods in com.jgoodies.forms.builder with parameters of type ColumnSpecModifier and TypeMethodDescriptionprotected final void
AbstractButtonPanelBuilder.appendColumn
(ColumnSpec columnSpec) Appends the given column specification to the builder's layout.final void
AbstractFormBuilder.appendColumn
(ColumnSpec columnSpec) Appends the given column specification to the builder's layout. -
Uses of ColumnSpec in com.jgoodies.forms.factories
Fields in com.jgoodies.forms.factories declared as ColumnSpecModifier and TypeFieldDescriptionstatic final ColumnSpec
FormFactory.BUTTON_COLSPEC
Describes a logical horizontal column for a fixed size button.static final ColumnSpec
FormFactory.DEFAULT_COLSPEC
An unmodifiableColumnSpec
that determines its preferred width by computing the maximum of all column component preferred widths and its minimum width by computing all column component minimum widths.static final ColumnSpec
FormFactory.GLUE_COLSPEC
An unmodifiableColumnSpec
that has an initial width of 0 pixels and that grows.static final ColumnSpec
FormFactory.GROWING_BUTTON_COLSPEC
Describes a logical horizontal column for a growing button.static final ColumnSpec
FormFactory.LABEL_COMPONENT_GAP_COLSPEC
Describes a logical horizontal gap between a label and an associated component.static final ColumnSpec
FormFactory.MIN_COLSPEC
An unmodifiableColumnSpec
that determines its width by computing the maximum of all column component minimum widths.static final ColumnSpec
FormFactory.PREF_COLSPEC
An unmodifiableColumnSpec
that determines its width by computing the maximum of all column component preferred widths.static final ColumnSpec
FormFactory.RELATED_GAP_COLSPEC
Describes a logical horizontal gap between two related components.static final ColumnSpec
FormFactory.UNRELATED_GAP_COLSPEC
Describes a logical horizontal gap between two unrelated components.Methods in com.jgoodies.forms.factories that return ColumnSpecModifier and TypeMethodDescriptionstatic ColumnSpec
FormFactory.createGapColumnSpec
(ConstantSize gapWidth) Deprecated. -
Uses of ColumnSpec in com.jgoodies.forms.layout
Methods in com.jgoodies.forms.layout that return ColumnSpecModifier and TypeMethodDescriptionstatic ColumnSpec
ColumnSpec.createGap
(ConstantSize gapWidth) Creates and returns aColumnSpec
that represents a gap with the specifiedConstantSize
.static ColumnSpec
Parses the encoded column specification and returns a ColumnSpec object that represents the string.static ColumnSpec
Parses the encoded column specifications and returns a ColumnSpec object that represents the string.static ColumnSpec[]
ColumnSpec.decodeSpecs
(String encodedColumnSpecs) Parses and splits encoded column specifications using the defaultLayoutMap
and returns an array of ColumnSpec objects.static ColumnSpec[]
ColumnSpec.decodeSpecs
(String encodedColumnSpecs, LayoutMap layoutMap) Splits and parses the encoded column specifications using the givenLayoutMap
and returns an array of ColumnSpec objects.FormLayout.getColumnSpec
(int columnIndex) Returns theColumnSpec
at the specified column index.Methods in com.jgoodies.forms.layout with parameters of type ColumnSpecModifier and TypeMethodDescriptionvoid
FormLayout.appendColumn
(ColumnSpec columnSpec) Appends the given column specification to the right hand side of all columns.LayoutMap.columnPut
(String key, ColumnSpec value) void
FormLayout.insertColumn
(int columnIndex, ColumnSpec columnSpec) Inserts the specified column at the specified position.void
FormLayout.setColumnSpec
(int columnIndex, ColumnSpec columnSpec) Sets theColumnSpec
at the specified column index.Constructors in com.jgoodies.forms.layout with parameters of type ColumnSpecModifierConstructorDescriptionFormLayout
(ColumnSpec[] colSpecs) Constructs a FormLayout using the given column specifications.FormLayout
(ColumnSpec[] colSpecs, RowSpec[] rowSpecs) Constructs a FormLayout using the given column and row specifications.
createGap(ConstantSize)
.