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

Packages that use RowSpec
com.jaxfront.swing.ui.visualizers   
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.jaxfront.swing.ui.visualizers
 

Methods in com.jaxfront.swing.ui.visualizers that return RowSpec
 RowSpec AbstractView.getRowSpec(java.lang.String layout)
           
 RowSpec[] AbstractView.getRowSpecArray(java.lang.String layout)
           
 RowSpec[] AbstractView.getRowSpecDefaultComponentHeight()
           
 

Uses of RowSpec in com.jgoodies.forms.builder
 

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.DEFAULT_ROWSPEC
           
static RowSpec FormFactory.GLUE_ROWSPEC
           
static RowSpec FormFactory.LINE_GAP_ROWSPEC
           
static RowSpec FormFactory.MIN_ROWSPEC
           
static RowSpec FormFactory.NARROW_LINE_GAP_ROWSPEC
           
static RowSpec FormFactory.PARAGRAPH_GAP_ROWSPEC
           
static RowSpec FormFactory.PREF_ROWSPEC
           
static RowSpec FormFactory.RELATED_GAP_ROWSPEC
           
static RowSpec FormFactory.UNRELATED_GAP_ROWSPEC
           
 

Methods in com.jgoodies.forms.factories that return RowSpec
static RowSpec FormFactory.createGapRowSpec(ConstantSize gapSize)
          Creates and answers 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 RowSpec.asUnmodifyable()
          Creates and answers an unmodifyable version of this RowSpec.
static RowSpec[] FormLayout.decodeRowSpecs(java.lang.String encodedRowSpec)
          Parses and splits encoded row specifications and returns an array of RowSpec objects.
 RowSpec FormLayout.getRowSpec(int rowIndex)
          Returns the RowSpec at the specified row.
 

Methods in com.jgoodies.forms.layout with parameters of type RowSpec
 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.