Uses of Class
com.privatejgoodies.forms.layout.RowSpec
-
Packages that use RowSpec Package Description com.privatejgoodies.forms.layout -
-
Uses of RowSpec in com.privatejgoodies.forms.layout
Fields in com.privatejgoodies.forms.layout declared as RowSpec Modifier and Type Field Description static RowSpecFormSpecs. BUTTON_ROWSPECDescribes a logical row for a fixed size button.static RowSpecFormSpecs. DEFAULT_ROWSPECAn unmodifiableRowSpecthat 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 RowSpecFormSpecs. GLUE_ROWSPECAn unmodifiableRowSpecthat has an initial height of 0 pixels and that grows.static RowSpecFormSpecs. LABEL_COMPONENT_GAP_ROWSPECDescribes a logical horizontal gap between a label and an associated component.static RowSpecFormSpecs. LINE_GAP_ROWSPECDescribes the logical vertical default gap between two rows in the grid.static RowSpecFormSpecs. MIN_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component minimum heights.static RowSpecFormSpecs. NARROW_LINE_GAP_ROWSPECDescribes a logical vertical narrow gap between two rows in the grid.static RowSpecFormSpecs. PARAGRAPH_GAP_ROWSPECDescribes the logical vertical default gap between two paragraphs in the layout grid.static RowSpecFormSpecs. PREF_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component preferred heights.static RowSpecFormSpecs. RELATED_GAP_ROWSPECDescribes a logical vertical gap between two related components.static RowSpecFormSpecs. UNRELATED_GAP_ROWSPECDescribes a logical vertical gap between two unrelated components.Methods in com.privatejgoodies.forms.layout that return RowSpec Modifier and Type Method Description static RowSpecRowSpec. createGap(ConstantSize gapHeight)Creates and returns aRowSpecthat represents a gap with the specifiedConstantSize.static RowSpecRowSpec. decode(java.lang.String encodedRowSpec)Parses the encoded row specification and returns a RowSpec object that represents the string.static RowSpecRowSpec. decode(java.lang.String encodedRowSpec, LayoutMap layoutMap)Parses the encoded row specifications and returns a RowSpec object that represents the string.static RowSpec[]RowSpec. decodeSpecs(java.lang.String encodedRowSpecs)Parses and splits encoded row specifications using the defaultLayoutMapand returns an array of RowSpec objects.static RowSpec[]RowSpec. decodeSpecs(java.lang.String encodedRowSpecs, LayoutMap layoutMap)Parses and splits encoded row specifications using the givenLayoutMapand returns an array of RowSpec objects.RowSpecFormLayout. getRowSpec(int rowIndex)Returns theRowSpecat the specified row index.Methods in com.privatejgoodies.forms.layout with parameters of type RowSpec Modifier and Type Method Description voidFormLayout. appendRow(RowSpec rowSpec)Appends the given row specification to the bottom of all rows.voidFormLayout. insertRow(int rowIndex, RowSpec rowSpec)Inserts the specified column at the specified position.java.lang.StringLayoutMap. rowPut(java.lang.String key, RowSpec value)Associates the specified ColumnSpec with the specified key in this map.voidFormLayout. setRowSpec(int rowIndex, RowSpec rowSpec)Sets the RowSpec at the specified row index.Constructors in com.privatejgoodies.forms.layout with parameters of type RowSpec Constructor Description FormLayout(ColumnSpec[] colSpecs, RowSpec[] rowSpecs)Constructs a FormLayout using the given column and row specifications.
-