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

Constructor Index

 o Cell()
Construct a cell specifying placement at row 0 and column 0.
 o Cell(int, int)
Construct a Cell.
 o Cell(int, int, int, int)
Construct a Cell.

Constructors

 o 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.
 o Cell
 public Cell(int row,
             int column)
Construct a Cell.

Parameters:
row - row to place component.
column - column to place component.
 o Cell
 public Cell()
Construct a cell specifying placement at row 0 and column 0.


All Packages  Class Hierarchy  This Package  Previous  Next  Index