Uses of Class
com.jgoodies.forms.layout.RowSpec
Packages that use RowSpec
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 RowSpec in com.jgoodies.forms.builder
Fields in com.jgoodies.forms.builder declared as RowSpecModifier and TypeFieldDescriptionprivate RowSpecDefaultFormBuilder.defaultRowSpecDeprecated.Holds the row specification that is reused to describe rows that are intended for labels and components.private RowSpecDefaultFormBuilder.lineGapSpecDeprecated.Holds the row specification that is reused to describe the constant gaps between component lines.private RowSpecDefaultFormBuilder.paragraphGapSpecDeprecated.Holds the row specification that describes the constant gaps between paragraphs.private static final RowSpec[]ButtonBarBuilder.ROW_SPECSSpecifies the FormLayout's the single button bar row.private static final RowSpec[]ButtonStackBuilder.ROW_SPECSSpecifies the rows of the initial FormLayout used in constructors.private RowSpec[]FormBuilder.rowSpecsMethods in com.jgoodies.forms.builder that return RowSpecModifier and TypeMethodDescriptionprivate RowSpecDefaultFormBuilder.getCursorRowSpec()Deprecated.Looks up and returns the row specification of the current row.Methods in com.jgoodies.forms.builder with parameters of type RowSpecModifier and TypeMethodDescriptionDefaultFormBuilder.defaultRowSpec(RowSpec defaultRowSpec) Deprecated.Sets the row specification that shall be used for component rows.private voidDefaultFormBuilder.ensureHasGapRow(RowSpec gapRowSpec) Deprecated.Ensures that we have a gap row before the next component row. -
Uses of RowSpec in com.jgoodies.forms.internal
Methods in com.jgoodies.forms.internal with parameters of type RowSpec -
Uses of RowSpec in com.jgoodies.forms.layout
Fields in com.jgoodies.forms.layout declared as RowSpecModifier and TypeFieldDescriptionstatic final RowSpecFormSpecs.BUTTON_ROWSPECDescribes a logical row for a fixed size button.static final 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 final RowSpecFormSpecs.GLUE_ROWSPECAn unmodifiableRowSpecthat has an initial height of 0 pixels and that grows.static final RowSpecFormSpecs.LABEL_COMPONENT_GAP_ROWSPECDescribes a logical horizontal gap between a label and an associated component.static final RowSpecFormSpecs.LINE_GAP_ROWSPECDescribes the logical vertical default gap between two rows in the grid.static final RowSpecFormSpecs.MIN_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component minimum heights.static final RowSpecFormSpecs.NARROW_LINE_GAP_ROWSPECDescribes a logical vertical narrow gap between two rows in the grid.static final RowSpecFormSpecs.PARAGRAPH_GAP_ROWSPECDescribes the logical vertical default gap between two paragraphs in the layout grid.static final RowSpecFormSpecs.PREF_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component preferred heights.static final RowSpecFormSpecs.RELATED_GAP_ROWSPECDescribes a logical vertical gap between two related components.static final RowSpecFormSpecs.UNRELATED_GAP_ROWSPECDescribes a logical vertical gap between two unrelated components.Fields in com.jgoodies.forms.layout with type parameters of type RowSpecModifier and TypeFieldDescriptionRowSpec.CACHEMaps encoded row specifications to RowSpec instances.FormLayout.rowSpecsHolds the row specifications.Methods in com.jgoodies.forms.layout that return RowSpecModifier and TypeMethodDescriptionstatic RowSpecRowSpec.createGap(ConstantSize gapHeight) Creates and returns aRowSpecthat represents a gap with the specifiedConstantSize.static RowSpecParses the encoded row specification and returns a RowSpec object that represents the string.static RowSpecParses the encoded row specifications and returns a RowSpec object that represents the string.(package private) static RowSpecRowSpec.decodeExpanded(String expandedTrimmedLowerCaseSpec) Decodes an expanded, trimmed, lower case row spec.static RowSpec[]RowSpec.decodeSpecs(String encodedRowSpecs) Parses and splits encoded row specifications using the defaultLayoutMapand returns an array of RowSpec objects.static RowSpec[]RowSpec.decodeSpecs(String encodedRowSpecs, LayoutMap layoutMap) Parses and splits encoded row specifications using the givenLayoutMapand returns an array of RowSpec objects.FormLayout.getRowSpec(int rowIndex) Returns theRowSpecat the specified row index.private RowSpec[]FormSpecParser.parseRowSpecs()(package private) static RowSpec[]FormSpecParser.parseRowSpecs(String encodedRowSpecs, LayoutMap layoutMap) Methods in com.jgoodies.forms.layout with parameters of type RowSpecModifier and TypeMethodDescriptionvoidAppends the given row specification to the bottom of all rows.voidInserts the specified row at the specified position.Associates the specified ColumnSpec with the specified key in this map.private voidvoidFormLayout.setRowSpec(int rowIndex, RowSpec rowSpec) Sets the RowSpec at the specified row index.Constructors in com.jgoodies.forms.layout with parameters of type RowSpecModifierConstructorDescriptionFormLayout(ColumnSpec[] colSpecs, RowSpec[] rowSpecs) Constructs a FormLayout using the given column and row specifications.