Generated by
JDiff

Interface javax.swing.table.TableColumnModel

Documentation changed from old to new.

Changed Methods
void addColumn(TableColumn) Documentation changed from old to new.
Appends aColumn to the end of the tableColumns array.
void addColumnModelListener(TableColumnModelListener) Documentation changed from old to new.
Adds a listener for table column model events.
TableColumn getColumn(int) Documentation changed from old to new.
Returns the TableColumn object for the column at columnIndex.
int getColumnCount() Documentation changed from old to new.
Returns the number of columns in the model.
int getColumnIndex(Object) Documentation changed from old to new.
Returns the index of the first column in the table whose identifier is equal to identifier when compared using equals.
int getColumnIndexAtX(int) Documentation changed from old to new.
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.
int getColumnMargin() Documentation changed from old to new.
Returns the width between the cells in each column.
boolean getColumnSelectionAllowed() Documentation changed from old to new.
Returns true if columns may be selected.
Enumeration getColumns() Documentation changed from old to new.
Returns an Enumeration of all the columns in the model.
int getSelectedColumnCount() Documentation changed from old to new.
Returns the number of selected columns.
int[] getSelectedColumns() Documentation changed from old to new.
Returns an array of indicies of all selected columns.
ListSelectionModel getSelectionModel() Documentation changed from old to new.
Returns the current selection model.
int getTotalColumnWidth() Documentation changed from old to new.
Returns the total width of all the columns.
void moveColumn(int, int) Documentation changed from old to new.
Moves the column and its header at columnIndex to newIndex.
void removeColumn(TableColumn) Documentation changed from old to new.
Deletes the TableColumn column from the tableColumns array.
void removeColumnModelListener(TableColumnModelListener) Documentation changed from old to new.
Removes a listener for table column model events.
void setColumnMargin(int) Documentation changed from old to new.
Sets the TableColumn's column margin to newMargin.
void setColumnSelectionAllowed(boolean) Documentation changed from old to new.
Sets whether the columns in this model may be selected.
void setSelectionModel(ListSelectionModel) Documentation changed from old to new.
Sets the selection model.