All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.sun.java.swing.table.TableColumnModel

public interface TableColumnModel
See Also:
DefaultTableColumnModel

Method Index

 o addColumn(TableColumn)
Appends aColumn to the end of the receiver's tableColumns array.
 o addColumnModelListener(TableColumnModelListener)
 o getColumn(int)
Returns the TableColumn object for the column at columnIndex
 o getColumnCount()
Returns the number of columns in the model
 o getColumnIndex(Object)
Returns the index of the first column in the receiver's columns array whose identifier is equal to identifier, when compared using equals().
 o getColumnIndexAtX(int)
Returns the index of the column that lies on the xPosition, or -1 if it lies outside the any of the column's bounds.
 o getColumnMargin()
Returns the width margin between each column
 o getColumns()
Returns an Enumeration of all the columns in the model
 o getColumnSelectionAllowed()
 o getSelectedColumnCount()
 o getSelectedColumns()
 o getSelectionModel()
 o getTotalColumnWidth()
Returns the total width of all the columns.
 o moveColumn(int, int)
Moves the column and heading at columnIndex to newIndex.
 o removeColumn(TableColumn)
Deletes the TableColumn column from the receiver's table columns array.
 o removeColumnModelListener(TableColumnModelListener)
 o setColumnMargin(int)
Sets the TableColumn's column margin to newMargin.
 o setColumnSelectionAllowed(boolean)
Sets whether the columns in this model can be selected.
 o setSelectionModel(ListSelectionModel)

Methods

 o addColumn
 public abstract void addColumn(TableColumn aColumn)
Appends aColumn to the end of the receiver's tableColumns array. This method also posts the columnAdded() event to its listeners.

Parameters:
aColumn - The TableColumn to be added
See Also:
removeColumn
 o removeColumn
 public abstract void removeColumn(TableColumn column)
Deletes the TableColumn column from the receiver's table columns array. This method will do nothing if column is not in the table's columns list. This method also posts the columnRemoved() event to its listeners.

Parameters:
column - The TableColumn to be removed
See Also:
addColumn
 o moveColumn
 public abstract void moveColumn(int columnIndex,
                                 int newIndex)
Moves the column and heading at columnIndex to newIndex. The old column at columnIndex will now be found at newIndex, The column that used to be at newIndex is shifted left or right to make room. This will not move any columns if columnIndex equals newIndex. This method also posts the columnMoved() event to its listeners.

Parameters:
columnIndex - the index of column to be moved
newIndex - New index to move the column
Throws: IllegalArgumentException
if column or newIndex are not in the valid range
 o setColumnMargin
 public abstract void setColumnMargin(int newMargin)
Sets the TableColumn's column margin to newMargin. This method also posts the columnMarginChanged() event to its listeners.

Parameters:
newMargin - the width margin of the column
See Also:
getColumnMargin
 o getColumnCount
 public abstract int getColumnCount()
Returns the number of columns in the model

 o getColumns
 public abstract Enumeration getColumns()
Returns an Enumeration of all the columns in the model

 o getColumnIndex
 public abstract int getColumnIndex(Object columnIdentifier)
Returns the index of the first column in the receiver's columns array whose identifier is equal to identifier, when compared using equals().

Parameters:
identifier - the identifier object
Returns:
the index of the first table column in the receiver's tableColumns array whose identifier is equal to identifier, when compared using equals().
Throws: IllegalArgumentException
if identifier is null or no TableColumn has this identifier
See Also:
getColumn
 o getColumn
 public abstract TableColumn getColumn(int columnIndex)
Returns the TableColumn object for the column at columnIndex

Parameters:
columnIndex - the index of the column desired
Returns:
the TableColumn object for the column at columnIndex
 o getColumnMargin
 public abstract int getColumnMargin()
Returns the width margin between each column

 o getColumnIndexAtX
 public abstract int getColumnIndexAtX(int xPosition)
Returns the index of the column that lies on the xPosition, or -1 if it lies outside the any of the column's bounds.

Returns:
the index of the column or -1 if no column is found
 o getTotalColumnWidth
 public abstract int getTotalColumnWidth()
Returns the total width of all the columns.

 o setColumnSelectionAllowed
 public abstract void setColumnSelectionAllowed(boolean flag)
Sets whether the columns in this model can be selected.

See Also:
getColumnSelectionAllowed
 o getColumnSelectionAllowed
 public abstract boolean getColumnSelectionAllowed()
Returns:
true if columns can be selected.
See Also:
setColumnSelectionAllowed
 o getSelectedColumns
 public abstract int[] getSelectedColumns()
Returns:
the indices of all selected columns, or an empty int array if no column is selected.
 o getSelectedColumnCount
 public abstract int getSelectedColumnCount()
Returns:
the number of selected columns. 0 if no columns are selected.
 o setSelectionModel
 public abstract void setSelectionModel(ListSelectionModel newModel)
 o getSelectionModel
 public abstract ListSelectionModel getSelectionModel()
 o addColumnModelListener
 public abstract void addColumnModelListener(TableColumnModelListener x)
 o removeColumnModelListener
 public abstract void removeColumnModelListener(TableColumnModelListener x)

All Packages  Class Hierarchy  This Package  Previous  Next  Index