Uses of Class
com.jgoodies.forms.layout.ColumnSpec
Packages that use ColumnSpec
Package
Description
Contains optional builder classes of the Forms framework.
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
Fields in com.jgoodies.forms.builder declared as ColumnSpecModifier and TypeFieldDescriptionprivate static final ColumnSpec[]ButtonBarBuilder.COL_SPECSSpecifies the columns of the initial FormLayout used in constructors.private static final ColumnSpec[]ButtonStackBuilder.COL_SPECSSpecifies the FormLayout's the single button stack column.private ColumnSpec[]FormBuilder.columnSpecs -
Uses of ColumnSpec in com.jgoodies.forms.internal
Methods in com.jgoodies.forms.internal with parameters of type ColumnSpecModifier and TypeMethodDescriptionprotected final voidAbstractButtonPanelBuilder.appendColumn(ColumnSpec columnSpec) Appends the given column specification to the builder's layout.final voidAbstractFormBuilder.appendColumn(ColumnSpec columnSpec) Appends the given column specification to the builder's layout. -
Uses of ColumnSpec in com.jgoodies.forms.layout
Fields in com.jgoodies.forms.layout declared as ColumnSpecModifier and TypeFieldDescriptionstatic final ColumnSpecFormSpecs.BUTTON_COLSPECDescribes a logical horizontal column for a fixed size button.static final ColumnSpecFormSpecs.DEFAULT_COLSPECAn unmodifiableColumnSpecthat 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 ColumnSpecFormSpecs.GLUE_COLSPECAn unmodifiableColumnSpecthat has an initial width of 0 pixels and that grows.static final ColumnSpecFormSpecs.GROWING_BUTTON_COLSPECDescribes a logical horizontal column for a growing button.static final ColumnSpecFormSpecs.LABEL_COMPONENT_GAP_COLSPECDescribes a logical horizontal gap between a label and an associated component.static final ColumnSpecFormSpecs.MIN_COLSPECAn unmodifiableColumnSpecthat determines its width by computing the maximum of all column component minimum widths.static final ColumnSpecFormSpecs.PREF_COLSPECAn unmodifiableColumnSpecthat determines its width by computing the maximum of all column component preferred widths.static final ColumnSpecFormSpecs.RELATED_GAP_COLSPECDescribes a logical horizontal gap between two related components.static final ColumnSpecFormSpecs.UNRELATED_GAP_COLSPECDescribes a logical horizontal gap between two unrelated components.Fields in com.jgoodies.forms.layout with type parameters of type ColumnSpecModifier and TypeFieldDescriptionprivate static final Map<String, ColumnSpec> ColumnSpec.CACHEMaps encoded column specifications to ColumnSpec instances.private final List<ColumnSpec> FormLayout.colSpecsHolds the column specifications.Methods in com.jgoodies.forms.layout that return ColumnSpecModifier and TypeMethodDescriptionstatic ColumnSpecColumnSpec.createGap(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 ColumnSpecColumnSpec.decodeExpanded(String expandedTrimmedLowerCaseSpec) Decodes an expanded, trimmed, lower case column spec.static ColumnSpec[]ColumnSpec.decodeSpecs(String encodedColumnSpecs) Parses and splits encoded column specifications using the defaultLayoutMapand returns an array of ColumnSpec objects.static ColumnSpec[]ColumnSpec.decodeSpecs(String encodedColumnSpecs, LayoutMap layoutMap) Splits and parses the encoded column specifications using the givenLayoutMapand returns an array of ColumnSpec objects.FormLayout.getColumnSpec(int columnIndex) Returns theColumnSpecat the specified column index.private ColumnSpec[]FormSpecParser.parseColumnSpecs()(package private) static ColumnSpec[]FormSpecParser.parseColumnSpecs(String encodedColumnSpecs, LayoutMap layoutMap) Methods in com.jgoodies.forms.layout with parameters of type ColumnSpecModifier and TypeMethodDescriptionvoidFormLayout.appendColumn(ColumnSpec columnSpec) Appends the given column specification to the right hand side of all columns.LayoutMap.columnPut(String key, ColumnSpec value) private voidLayoutMap.columnPut(String key, String[] aliases, ColumnSpec value) voidFormLayout.insertColumn(int columnIndex, ColumnSpec columnSpec) Inserts the specified column at the specified position.voidFormLayout.setColumnSpec(int columnIndex, ColumnSpec columnSpec) Sets the ColumnSpec 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.