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

Packages that use CellConstraints
com.jgoodies.forms.builder Contains optional builder classes of the Forms framework. 
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 CellConstraints in com.jgoodies.forms.builder
 

Methods in com.jgoodies.forms.builder with parameters of type CellConstraints
 java.awt.Component AbstractFormBuilder.add(java.awt.Component component, CellConstraints cellConstraints)
          Adds a component to the panel using the given cell constraints.
 javax.swing.JLabel PanelBuilder.add(javax.swing.JLabel label, CellConstraints labelConstraints, java.awt.Component component, CellConstraints componentConstraints)
          Adds a label and component to the panel using the given cell constraints.
 javax.swing.JLabel PanelBuilder.addLabel(java.lang.String textWithMnemonic, CellConstraints constraints)
          Adds a textual label to the form using the specified constraints.
 javax.swing.JLabel PanelBuilder.addLabel(java.lang.String textWithMnemonic, CellConstraints labelConstraints, java.awt.Component component, CellConstraints componentConstraints)
          Adds a label and component to the panel using the given cell constraints.
 javax.swing.JComponent PanelBuilder.addSeparator(java.lang.String text, CellConstraints constraints)
          Adds a titled separator to the form using the specified constraints.
 javax.swing.JLabel PanelBuilder.addTitle(java.lang.String text, CellConstraints constraints)
          Adds a title label to the form using the specified constraints.
 

Uses of CellConstraints in com.jgoodies.forms.layout
 

Methods in com.jgoodies.forms.layout that return CellConstraints
 CellConstraints FormLayout.getConstraints(java.awt.Component component)
          Gets the constraints for the specified component.
 CellConstraints CellConstraints.xy(int col, int row)
          Sets row and column origins; sets width and height to 1; uses the default alignments.
 CellConstraints CellConstraints.xy(int col, int row, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)
          Sets the row and column origins; sets width and height to 1; set horizontal and vertical alignment using the specified objects.
 CellConstraints CellConstraints.xy(int col, int row, java.lang.String encodedAlignments)
          Sets row and column origins; sets width and height to 1; decodes alignments from the given string description.
 CellConstraints CellConstraints.xywh(int col, int row, int colSpan, int rowSpan)
          Sets the row, column, width, and height; uses default alignments.
 CellConstraints CellConstraints.xywh(int col, int row, int colSpan, int rowSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)
          Sets the row, column, width, and height; sets the horizontal and vertical aligment using the specified alignment objects.
 CellConstraints CellConstraints.xywh(int col, int row, int colSpan, int rowSpan, java.lang.String encodedAlignments)
          Sets the row, column, width, and height; decodes the horizontal and vertical alignments from the given string.
 

Methods in com.jgoodies.forms.layout with parameters of type CellConstraints
 void FormLayout.setConstraints(java.awt.Component component, CellConstraints constraints)
          Sets the constraints for the specified component in this layout.