|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CellConstraints.Alignment | |
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.Alignment in com.jgoodies.forms.builder |
Methods in com.jgoodies.forms.builder with parameters of type CellConstraints.Alignment | |
void |
AbstractFormBuilder.setHAlignment(CellConstraints.Alignment alignment)
Sets the horizontal alignment. |
void |
AbstractFormBuilder.setVAlignment(CellConstraints.Alignment alignment)
Sets the vertical alignment. |
void |
AbstractFormBuilder.setAlignment(CellConstraints.Alignment hAlign,
CellConstraints.Alignment vAlign)
Sets the horizontal and vertical alignment. |
Uses of CellConstraints.Alignment in com.jgoodies.forms.layout |
Fields in com.jgoodies.forms.layout declared as CellConstraints.Alignment | |
static CellConstraints.Alignment |
CellConstraints.DEFAULT
Use the column's or row's default alignment. |
static CellConstraints.Alignment |
CellConstraints.FILL
Fill the cell either horizontally or vertically. |
static CellConstraints.Alignment |
CellConstraints.LEFT
Put the component in the left. |
static CellConstraints.Alignment |
CellConstraints.RIGHT
Put the component in the right. |
static CellConstraints.Alignment |
CellConstraints.CENTER
Put the component in the center. |
static CellConstraints.Alignment |
CellConstraints.TOP
Put the component in the top. |
static CellConstraints.Alignment |
CellConstraints.BOTTOM
Put the component in the bottom. |
CellConstraints.Alignment |
CellConstraints.hAlign
Describes the component's horizontal alignment. |
CellConstraints.Alignment |
CellConstraints.vAlign
Describes the component's vertical alignment. |
Methods in com.jgoodies.forms.layout with parameters of type CellConstraints.Alignment | |
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.xyw(int col,
int row,
int colSpan,
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,
CellConstraints.Alignment colAlign,
CellConstraints.Alignment rowAlign)
Sets the row, column, width, and height; sets the horizontal and vertical aligment using the specified alignment objects. |
Constructors in com.jgoodies.forms.layout with parameters of type CellConstraints.Alignment | |
CellConstraints(int gridX,
int gridY,
CellConstraints.Alignment hAlign,
CellConstraints.Alignment vAlign)
Constructs an instance of CellConstraints for the given
cell position, anchor, and fill. |
|
CellConstraints(int gridX,
int gridY,
int gridWidth,
int gridHeight,
CellConstraints.Alignment hAlign,
CellConstraints.Alignment vAlign)
Constructs an instance of CellConstraints for the given
cell position and size, anchor, and fill. |
|
CellConstraints(int gridX,
int gridY,
int gridWidth,
int gridHeight,
CellConstraints.Alignment hAlign,
CellConstraints.Alignment vAlign,
Insets insets)
Constructs an instance of CellConstraints for
the complete set of available properties. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |