Uses of Class
com.jgoodies.forms.layout.RowSpec

Packages that use RowSpec
com.jgoodies.forms.builder Contains optional builder classes of the Forms framework. 
com.jgoodies.forms.factories Consists of optional Forms framework factory classes that assist you in building consistent forms quickly. 
com.jgoodies.forms.layout 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 RowSpec
 RowSpec DefaultFormBuilder.getLineGapSpec()
          Returns the row specification that is used to separate component lines.
 

Methods in com.jgoodies.forms.builder with parameters of type RowSpec
 void AbstractFormBuilder.appendRow(RowSpec rowSpec)
          Appends the given row specification to the builder's layout.
 

Uses of RowSpec in com.jgoodies.forms.factories
 

Fields in com.jgoodies.forms.factories declared as RowSpec
static RowSpec FormFactory.MIN_ROWSPEC
          An unmodifyable RowSpec that determines its height by computing the maximum of all column component minimum heights.
static RowSpec FormFactory.PREF_ROWSPEC
          An unmodifyable RowSpec that determines its height by computing the maximum of all column component preferred heights.
static RowSpec FormFactory.DEFAULT_ROWSPEC
          An unmodifyable RowSpec that 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 RowSpec FormFactory.GLUE_ROWSPEC
          An unmodifyable RowSpec that has an initial height of 0 pixels and that grows.
static RowSpec FormFactory.RELATED_GAP_ROWSPEC
          Describes a logical vertzical gap between two related components.
static RowSpec FormFactory.UNRELATED_GAP_ROWSPEC
          Describes a logical vertical gap between two unrelated components.
static RowSpec FormFactory.NARROW_LINE_GAP_ROWSPEC
          Describes a logical vertical narrow gap between two rows in the grid.
static RowSpec FormFactory.LINE_GAP_ROWSPEC
          Describes the logical vertical default gap between two rows in the grid.
static RowSpec FormFactory.PARAGRAPH_GAP_ROWSPEC
          Describes the logical vertical default gap between two paragraphs in the layout grid.
 

Methods in com.jgoodies.forms.factories that return RowSpec
static RowSpec FormFactory.createGapRowSpec(ConstantSize gapSize)
          Creates and returns a RowSpec that represents a gap with the specified ConstantSize.
 

Uses of RowSpec in com.jgoodies.forms.layout
 

Methods in com.jgoodies.forms.layout that return RowSpec
 RowSpec FormLayout.getRowSpec(int rowIndex)
          Returns the RowSpec at the specified row index.
static RowSpec[] RowSpec.decodeSpecs(String encodedRowSpecs)
          Parses and splits encoded row specifications and returns an array of RowSpec objects.
 

Methods in com.jgoodies.forms.layout with parameters of type RowSpec
 void FormLayout.setRowSpec(int rowIndex, RowSpec rowSpec)
          Sets the RowSpec at the specified row index.
 void FormLayout.appendRow(RowSpec rowSpec)
          Appends the given row specification to the bottom of all rows.
 void FormLayout.insertRow(int rowIndex, RowSpec rowSpec)
          Inserts the specified column at the specified position.
 

Constructors in com.jgoodies.forms.layout with parameters of type RowSpec
FormLayout(ColumnSpec[] colSpecs, RowSpec[] rowSpecs)
          Constructs an instance of FormLayout using the given column and row specifications.
 



Copyright © 2002-2004 JGoodies Karsten Lentzsch. All Rights Reserved.