All Packages Class Hierarchy This Package Previous Next Index
Class com.sgi.sysadm.ui.EditableList.Cell
java.lang.Object
|
+----com.sgi.sysadm.ui.EditableList.Cell
- public class Cell
- extends Object
Cell is the constraint class for the LayoutManager returned by
the getEditorLayout method. A Cell constraint
specified in a call to addComponent() of the Container that
uses the LayoutManager returned by getEditorLayout can
be used to specify the row and column to display that Component
in.
- See Also:
- getEditorLayout
-
Cell()
- Construct a cell specifying placement at row 0 and column 0.
-
Cell(int, int)
- Construct a Cell.
-
Cell(int, int, int, int)
- Construct a Cell.
Cell
public Cell(int row,
int column,
int horizAlignment,
int vertAlignment)
- Construct a Cell.
- Parameters:
- row - row to place component.
- column - column to place component.
- horizAlignment - Horizontal alignment of this cell.
Use LEFT, CENTER, or RIGHT values from SwingConstants.
- vertAlignment - Vertical alignment of this cell.
Use BOTTOM, CENTER, or TOP values from SwingConstants.
Cell
public Cell(int row,
int column)
- Construct a Cell.
- Parameters:
- row - row to place component.
- column - column to place component.
Cell
public Cell()
- Construct a cell specifying placement at row 0 and column 0.
All Packages Class Hierarchy This Package Previous Next Index