All Packages Class Hierarchy This Package Previous Next Index
Class com.sgi.sysadm.ui.ItemTableColumn
java.lang.Object
|
+----com.sgi.sysadm.ui.ItemTableColumn
- public class ItemTableColumn
- extends Object
A class that describes a column to be used in an ItemTable.
-
editor
- The editor to use for the column
-
name
- The string to use as the header for the column
-
renderer
- The renderer to use for the column
-
width
- The initial width of the column
-
ItemTableColumn(String, int)
- Construct an ItemTableColumn.
-
ItemTableColumn(String, int, TableCellRenderer)
- Construct an ItemTableColumn.
-
ItemTableColumn(String, int, TableCellRenderer, TableCellEditor)
- Construct an ItemTableColumn
name
public String name
- The string to use as the header for the column
width
public int width
- The initial width of the column
renderer
public TableCellRenderer renderer
- The renderer to use for the column
editor
public TableCellEditor editor
- The editor to use for the column
ItemTableColumn
public ItemTableColumn(String name,
int width,
TableCellRenderer renderer,
TableCellEditor editor)
- Construct an ItemTableColumn
- Parameters:
- name - The string to use as the header for the column
- width - The initial width of the column
- renderer - The renderer to use for the column
- editor - The editor to use for the column
ItemTableColumn
public ItemTableColumn(String name,
int width,
TableCellRenderer renderer)
- Construct an ItemTableColumn. Sets the editor to null
- Parameters:
- name - The string to use as the header for the column
- width - The initial width of the column
- renderer - The renderer to use for the column
ItemTableColumn
public ItemTableColumn(String name,
int width)
- Construct an ItemTableColumn. Sets the editor and renderer to null
- Parameters:
- name - The string to use as the header for the column
- width - The initial width of the column
All Packages Class Hierarchy This Package Previous Next Index