Example usage for Java javax.swing.table DefaultTableColumnModel fields, constructors, methods, implement or subclass
The text is from its open source code.
DefaultTableColumnModel() Creates a default table column model. |
void | addColumn(TableColumn aColumn) Appends aColumn to the end of the tableColumns array. |
TableColumn | getColumn(int columnIndex) Returns the TableColumn object for the column at columnIndex . |
int | getColumnCount() Returns the number of columns in the tableColumns array. |
void | moveColumn(int columnIndex, int newIndex) Moves the column and heading at columnIndex to newIndex . |
void | removeColumn(TableColumn column) Deletes the column from the tableColumns array. |