Uses of Class
com.jgoodies.forms.layout.RowSpec
Packages that use RowSpec
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 RowSpec in com.jgoodies.forms.builder
Methods in com.jgoodies.forms.builder that return RowSpecModifier and TypeMethodDescriptionDefaultFormBuilder.getDefaultRowSpec()Returns the row specification that is used for component rows.DefaultFormBuilder.getLineGapSpec()Returns the row specification that is used to separate component row.Methods in com.jgoodies.forms.builder with parameters of type RowSpecModifier and TypeMethodDescriptionprotected final voidAppends the given row specification to the builder's layout.final voidAppends the given row specification to the builder's layout.voidDefaultFormBuilder.setDefaultRowSpec(RowSpec defaultRowSpec) Sets the row specification that shall be used for component rows. -
Uses of RowSpec in com.jgoodies.forms.factories
Fields in com.jgoodies.forms.factories declared as RowSpecModifier and TypeFieldDescriptionstatic final RowSpecFormFactory.BUTTON_ROWSPECDescribes a logical row for a fixed size button.static final RowSpecFormFactory.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 RowSpecFormFactory.GLUE_ROWSPECAn unmodifiableRowSpecthat has an initial height of 0 pixels and that grows.static final RowSpecFormFactory.LINE_GAP_ROWSPECDescribes the logical vertical default gap between two rows in the grid.static final RowSpecFormFactory.MIN_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component minimum heights.static final RowSpecFormFactory.NARROW_LINE_GAP_ROWSPECDescribes a logical vertical narrow gap between two rows in the grid.static final RowSpecFormFactory.PARAGRAPH_GAP_ROWSPECDescribes the logical vertical default gap between two paragraphs in the layout grid.static final RowSpecFormFactory.PREF_ROWSPECAn unmodifiableRowSpecthat determines its height by computing the maximum of all column component preferred heights.static final RowSpecFormFactory.RELATED_GAP_ROWSPECDescribes a logical vertical gap between two related components.static final RowSpecFormFactory.UNRELATED_GAP_ROWSPECDescribes a logical vertical gap between two unrelated components.Methods in com.jgoodies.forms.factories that return RowSpecModifier and TypeMethodDescriptionstatic RowSpecFormFactory.createGapRowSpec(ConstantSize gapHeight) Deprecated. -
Uses of RowSpec in com.jgoodies.forms.layout
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.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.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 column at the specified position.Associates the specified ColumnSpec with the specified key in this map.voidFormLayout.setRowSpec(int rowIndex, RowSpec rowSpec) Sets theRowSpecat 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.
RowSpec.createGap(ConstantSize).