info.clearthought.layout

Interface TableLayoutConstants

Known Implementing Classes:
TableLayout, TableLayoutConstraints

public interface TableLayoutConstants

TableLayoutConstants define the constants used by all the TableLayout classes.
Version:
3.0 February 15, 2004
Author:
Daniel E. Barbalace

Field Summary

static int
BOTTOM
Indicates that the component is bottom justified in its cell
static int
CENTER
Indicates that the component is centered in its cell
static double
FILL
Indicates that the row/column should fill the available space
static int
FULL
Indicates that the component is full justified in its cell
static int
LEADING
Indicates that the component is leading justified in its cell.
static int
LEFT
Indicates that the component is left justified in its cell
static double
MINIMUM
Indicates that the row/column should be allocated just enough space to accomidate the minimum size of all components contained completely within this row/column.
static double
PREFERRED
Indicates that the row/column should be allocated just enough space to accomidate the preferred size of all components contained completely within this row/column.
static int
RIGHT
Indicates that the component is right justified in its cell
static int
TOP
Indicates that the component is top justified in its cell
static int
TRAILING
Indicates that the component is trailing justified in its cell.

Field Details

BOTTOM

public static final int BOTTOM
Indicates that the component is bottom justified in its cell
Field Value:
3

CENTER

public static final int CENTER
Indicates that the component is centered in its cell
Field Value:
1

FILL

public static final double FILL
Indicates that the row/column should fill the available space
Field Value:
-1.0

FULL

public static final int FULL
Indicates that the component is full justified in its cell
Field Value:
2

LEADING

public static final int LEADING
Indicates that the component is leading justified in its cell. Leading justification means components are left justified if their container is left-oriented and right justified if their container is right-oriented. Trailing justification is opposite. see java.awt.Component#getComponentOrientation
Field Value:
4

LEFT

public static final int LEFT
Indicates that the component is left justified in its cell
Field Value:
0

MINIMUM

public static final double MINIMUM
Indicates that the row/column should be allocated just enough space to accomidate the minimum size of all components contained completely within this row/column.
Field Value:
-3.0

PREFERRED

public static final double PREFERRED
Indicates that the row/column should be allocated just enough space to accomidate the preferred size of all components contained completely within this row/column.
Field Value:
-2.0

RIGHT

public static final int RIGHT
Indicates that the component is right justified in its cell
Field Value:
3

TOP

public static final int TOP
Indicates that the component is top justified in its cell
Field Value:
0

TRAILING

public static final int TRAILING
Indicates that the component is trailing justified in its cell. Trailing justification means components are right justified if their container is left-oriented and left justified if their container is right-oriented. Leading justification is opposite. see java.awt.Component#getComponentOrientation
Field Value:
5