Uses of Class
com.jgoodies.forms.layout.CellConstraints.Alignment
-
Packages that use CellConstraints.Alignment Package Description 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 CellConstraints.Alignment in com.jgoodies.forms.builder
Methods in com.jgoodies.forms.builder with parameters of type CellConstraints.Alignment Modifier and Type Method Description voidAbstractFormBuilder. setAlignment(CellConstraints.Alignment hAlign, CellConstraints.Alignment vAlign)Sets the horizontal and vertical alignment.voidAbstractFormBuilder. setHAlignment(CellConstraints.Alignment alignment)Sets the horizontal alignment.voidAbstractFormBuilder. setVAlignment(CellConstraints.Alignment alignment)Sets the vertical alignment. -
Uses of CellConstraints.Alignment in com.jgoodies.forms.factories
Fields in com.jgoodies.forms.factories declared as CellConstraints.Alignment Modifier and Type Field Description static CellConstraints.AlignmentCC. BOTTOMstatic CellConstraints.AlignmentCC. CENTERstatic CellConstraints.AlignmentCC. DEFAULTstatic CellConstraints.AlignmentCC. FILLstatic CellConstraints.AlignmentCC. LEFTstatic CellConstraints.AlignmentCC. RIGHTstatic CellConstraints.AlignmentCC. TOPMethods in com.jgoodies.forms.factories with parameters of type CellConstraints.Alignment Modifier and Type Method Description static CellConstraintsCC. rc(int row, int col, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row and column origins; sets width and height to 1; set horizontal and vertical alignment using the specified objects.static CellConstraintsCC. rchw(int row, int col, int rowSpan, int colSpan, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row, column, height, and width; sets the vertical and horizontal alignment using the specified alignment objects.static CellConstraintsCC. rcw(int row, int col, int colSpan, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row, column, height, and width; sets the vertical and horizontal alignment using the specified alignment objects.static CellConstraintsCC. xy(int col, int row, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column and row origins; sets width and height to 1; set horizontal and vertical alignment using the specified objects.static CellConstraintsCC. xyw(int col, int row, int colSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column, row, width, and height; sets the horizontal and vertical alignment using the specified alignment objects.static CellConstraintsCC. xywh(int col, int row, int colSpan, int rowSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column, row, width, and height; sets the horizontal and vertical alignment using the specified alignment objects. -
Uses of CellConstraints.Alignment in com.jgoodies.forms.layout
Fields in com.jgoodies.forms.layout declared as CellConstraints.Alignment Modifier and Type Field Description static CellConstraints.AlignmentCellConstraints. BOTTOMPut the component in the bottom.static CellConstraints.AlignmentCellConstraints. CENTERPut the component in the center.static CellConstraints.AlignmentCellConstraints. DEFAULTUse the column's or row's default alignment.static CellConstraints.AlignmentCellConstraints. FILLFill the cell either horizontally or vertically.CellConstraints.AlignmentCellConstraints. hAlignDescribes the component's horizontal alignment.static CellConstraints.AlignmentCellConstraints. LEFTPut the component in the left.static CellConstraints.AlignmentCellConstraints. RIGHTPut the component in the right.static CellConstraints.AlignmentCellConstraints. TOPPut the component in the top.CellConstraints.AlignmentCellConstraints. vAlignDescribes the component's vertical alignment.Methods in com.jgoodies.forms.layout with parameters of type CellConstraints.Alignment Modifier and Type Method Description CellConstraintsCellConstraints. rc(int row, int col, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row and column origins; sets width and height to 1; set horizontal and vertical alignment using the specified objects.CellConstraintsCellConstraints. rchw(int row, int col, int rowSpan, int colSpan, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row, column, height, and width; sets the vertical and horizontal alignment using the specified alignment objects.CellConstraintsCellConstraints. rcw(int row, int col, int colSpan, CellConstraints.Alignment rowAlign, CellConstraints.Alignment colAlign)Sets the row, column, height, and width; sets the vertical and horizontal alignment using the specified alignment objects.CellConstraintsCellConstraints. xy(int col, int row, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column and row origins; sets width and height to 1; set horizontal and vertical alignment using the specified objects.CellConstraintsCellConstraints. xyw(int col, int row, int colSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column, row, width, and height; sets the horizontal and vertical alignment using the specified alignment objects.CellConstraintsCellConstraints. xywh(int col, int row, int colSpan, int rowSpan, CellConstraints.Alignment colAlign, CellConstraints.Alignment rowAlign)Sets the column, row, width, and height; sets the horizontal and vertical alignment using the specified alignment objects.Constructors in com.jgoodies.forms.layout with parameters of type CellConstraints.Alignment Constructor Description CellConstraints(int gridX, int gridY, int gridWidth, int gridHeight, CellConstraints.Alignment hAlign, CellConstraints.Alignment vAlign)Constructs an instance ofCellConstraintsfor the given cell position and size, anchor, and fill.CellConstraints(int gridX, int gridY, int gridWidth, int gridHeight, CellConstraints.Alignment hAlign, CellConstraints.Alignment vAlign, java.awt.Insets insets)Constructs an instance ofCellConstraintsfor the complete set of available properties.CellConstraints(int gridX, int gridY, CellConstraints.Alignment hAlign, CellConstraints.Alignment vAlign)Constructs an instance ofCellConstraintsfor the given cell position, anchor, and fill.
-