Uses of Class
com.privatejgoodies.forms.layout.CellConstraints.Alignment
Packages that use CellConstraints.Alignment
-
Uses of CellConstraints.Alignment in com.privatejgoodies.forms.factories
Fields in com.privatejgoodies.forms.factories declared as CellConstraints.AlignmentModifier and TypeFieldDescriptionstatic final CellConstraints.AlignmentCC.BOTTOMstatic final CellConstraints.AlignmentCC.CENTERstatic final CellConstraints.AlignmentCC.DEFAULTstatic final CellConstraints.AlignmentCC.FILLstatic final CellConstraints.AlignmentCC.LEFTstatic final CellConstraints.AlignmentCC.RIGHTstatic final CellConstraints.AlignmentCC.TOPMethods in com.privatejgoodies.forms.factories with parameters of type CellConstraints.AlignmentModifier and TypeMethodDescriptionstatic 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.privatejgoodies.forms.layout
Fields in com.privatejgoodies.forms.layout declared as CellConstraints.AlignmentModifier and TypeFieldDescriptionstatic final CellConstraints.AlignmentCellConstraints.BOTTOMPut the component in the bottom.static final CellConstraints.AlignmentCellConstraints.CENTERPut the component in the center.static final CellConstraints.AlignmentCellConstraints.DEFAULTUse the column's or row's default alignment.static final CellConstraints.AlignmentCellConstraints.FILLFill the cell either horizontally or vertically.CellConstraints.hAlignDescribes the component's horizontal alignment.static final CellConstraints.AlignmentCellConstraints.LEFTPut the component in the left.static final CellConstraints.AlignmentCellConstraints.RIGHTPut the component in the right.static final CellConstraints.AlignmentCellConstraints.TOPPut the component in the top.CellConstraints.vAlignDescribes the component's vertical alignment.Methods in com.privatejgoodies.forms.layout with parameters of type CellConstraints.AlignmentModifier and TypeMethodDescriptionCellConstraints.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.CellConstraints.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.CellConstraints.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.CellConstraints.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.CellConstraints.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.CellConstraints.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.privatejgoodies.forms.layout with parameters of type CellConstraints.AlignmentModifierConstructorDescriptionCellConstraints(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, 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.