Uses of Class
com.privatejgoodies.forms.layout.ColumnSpec
-
Packages that use ColumnSpec Package Description com.privatejgoodies.forms.layout -
-
Uses of ColumnSpec in com.privatejgoodies.forms.layout
Fields in com.privatejgoodies.forms.layout declared as ColumnSpec Modifier and Type Field Description static ColumnSpecFormSpecs. BUTTON_COLSPECDescribes a logical horizontal column for a fixed size button.static 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 ColumnSpecFormSpecs. GLUE_COLSPECAn unmodifiableColumnSpecthat has an initial width of 0 pixels and that grows.static ColumnSpecFormSpecs. GROWING_BUTTON_COLSPECDescribes a logical horizontal column for a growing button.static ColumnSpecFormSpecs. LABEL_COMPONENT_GAP_COLSPECDescribes a logical horizontal gap between a label and an associated component.static ColumnSpecFormSpecs. MIN_COLSPECAn unmodifiableColumnSpecthat determines its width by computing the maximum of all column component minimum widths.static ColumnSpecFormSpecs. PREF_COLSPECAn unmodifiableColumnSpecthat determines its width by computing the maximum of all column component preferred widths.static ColumnSpecFormSpecs. RELATED_GAP_COLSPECDescribes a logical horizontal gap between two related components.static ColumnSpecFormSpecs. UNRELATED_GAP_COLSPECDescribes a logical horizontal gap between two unrelated components.Methods in com.privatejgoodies.forms.layout that return ColumnSpec Modifier and Type Method Description static ColumnSpecColumnSpec. createGap(ConstantSize gapWidth)Creates and returns aColumnSpecthat represents a gap with the specifiedConstantSize.static ColumnSpecColumnSpec. decode(java.lang.String encodedColumnSpec)Parses the encoded column specification and returns a ColumnSpec object that represents the string.static ColumnSpecColumnSpec. decode(java.lang.String encodedColumnSpec, LayoutMap layoutMap)Parses the encoded column specifications and returns a ColumnSpec object that represents the string.static ColumnSpec[]ColumnSpec. decodeSpecs(java.lang.String encodedColumnSpecs)Parses and splits encoded column specifications using the defaultLayoutMapand returns an array of ColumnSpec objects.static ColumnSpec[]ColumnSpec. decodeSpecs(java.lang.String encodedColumnSpecs, LayoutMap layoutMap)Splits and parses the encoded column specifications using the givenLayoutMapand returns an array of ColumnSpec objects.ColumnSpecFormLayout. getColumnSpec(int columnIndex)Returns theColumnSpecat the specified column index.Methods in com.privatejgoodies.forms.layout with parameters of type ColumnSpec Modifier and Type Method Description voidFormLayout. appendColumn(ColumnSpec columnSpec)Appends the given column specification to the right hand side of all columns.java.lang.StringLayoutMap. columnPut(java.lang.String key, 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.privatejgoodies.forms.layout with parameters of type ColumnSpec Constructor Description FormLayout(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.
-