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.


Variable Index

 o editor
The editor to use for the column
 o name
The string to use as the header for the column
 o renderer
The renderer to use for the column
 o width
The initial width of the column

Constructor Index

 o ItemTableColumn(String, int)
Construct an ItemTableColumn.
 o ItemTableColumn(String, int, TableCellRenderer)
Construct an ItemTableColumn.
 o ItemTableColumn(String, int, TableCellRenderer, TableCellEditor)
Construct an ItemTableColumn

Variables

 o name
 public String name
The string to use as the header for the column

 o width
 public int width
The initial width of the column

 o renderer
 public TableCellRenderer renderer
The renderer to use for the column

 o editor
 public TableCellEditor editor
The editor to use for the column

Constructors

 o 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
 o 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
 o 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