Methods Summary |
---|
public void | addColumn(javax.swing.table.TableColumn aColumn)Appends aColumn to the end of the
tableColumns array.
This method posts a columnAdded
event to its listeners.
|
public void | addColumnModelListener(javax.swing.event.TableColumnModelListener x)Adds a listener for table column model events.
|
public javax.swing.table.TableColumn | getColumn(int columnIndex)Returns the TableColumn object for the column at
columnIndex .
|
public int | getColumnCount()Returns the number of columns in the model.
|
public int | getColumnIndex(java.lang.Object columnIdentifier)Returns the index of the first column in the table
whose identifier is equal to identifier ,
when compared using equals .
|
public int | getColumnIndexAtX(int xPosition)Returns the index of the column that lies on the
horizontal point, xPosition ;
or -1 if it lies outside the any of the column's bounds.
In keeping with Swing's separable model architecture, a
TableColumnModel does not know how the table columns actually appear on
screen. The visual presentation of the columns is the responsibility
of the view/controller object using this model (typically JTable). The
view/controller need not display the columns sequentially from left to
right. For example, columns could be displayed from right to left to
accomodate a locale preference or some columns might be hidden at the
request of the user. Because the model does not know how the columns
are laid out on screen, the given xPosition should not be
considered to be a coordinate in 2D graphics space. Instead, it should
be considered to be a width from the start of the first column in the
model. If the column index for a given X coordinate in 2D space is
required, JTable.columnAtPoint can be used instead.
|
public int | getColumnMargin()Returns the width between the cells in each column.
|
public boolean | getColumnSelectionAllowed()Returns true if columns may be selected.
|
public java.util.Enumeration | getColumns()Returns an Enumeration of all the columns in the model.
|
public int | getSelectedColumnCount()Returns the number of selected columns.
|
public int[] | getSelectedColumns()Returns an array of indicies of all selected columns.
|
public javax.swing.ListSelectionModel | getSelectionModel()Returns the current selection model.
|
public int | getTotalColumnWidth()Returns the total width of all the columns.
|
public void | moveColumn(int columnIndex, int newIndex)Moves the column and its header 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
posts a columnMoved event to its listeners.
|
public void | removeColumn(javax.swing.table.TableColumn column)Deletes the TableColumn column from the
tableColumns array. This method will do nothing if
column is not in the table's column list.
This method posts a columnRemoved
event to its listeners.
|
public void | removeColumnModelListener(javax.swing.event.TableColumnModelListener x)Removes a listener for table column model events.
|
public void | setColumnMargin(int newMargin)Sets the TableColumn 's column margin to
newMargin . This method posts
a columnMarginChanged event to its listeners.
|
public void | setColumnSelectionAllowed(boolean flag)Sets whether the columns in this model may be selected.
|
public void | setSelectionModel(javax.swing.ListSelectionModel newModel)Sets the selection model.
|