Generated by
JDiff

Class javax.swing.table.DefaultTableColumnModel

Documentation changed from old to new.

Added Methods
EventListener[] getListeners(Class) Returns an array of all the listeners of the given type that were added to this model.
 

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.
ListSelectionModel createSelectionModel() Documentation changed from old to new.
Creates a new default list selection model.
void fireColumnAdded(TableColumnModelEvent) Documentation changed from old to new.
Notifies all listeners that have registered interest for notification on this event type.
void fireColumnMarginChanged() Documentation changed from old to new.
Notifies all listeners that have registered interest for notification on this event type.
void fireColumnMoved(TableColumnModelEvent) Documentation changed from old to new.
Notifies all listeners that have registered interest for notification on this event type.
void fireColumnRemoved(TableColumnModelEvent) Documentation changed from old to new.
Notifies all listeners that have registered interest for notification on this event type.
void fireColumnSelectionChanged(ListSelectionEvent) Documentation changed from old to new.
Notifies all listeners that have registered interest for notification on this event type.
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 tableColumns array.
int getColumnIndex(Object) Documentation changed from old to new.
Returns the index of the first column in the tableColumns array 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 at position x or -1 if no column covers this point.
int getColumnMargin() Documentation changed from old to new.
Returns the width margin for TableColumn.
boolean getColumnSelectionAllowed() Documentation changed from old to new.
Returns true if column selection is allowed otherwise false.
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 columns selected.
int[] getSelectedColumns() Documentation changed from old to new.
Returns an array of selected columns.
ListSelectionModel getSelectionModel() Documentation changed from old to new.
Returns the ListSelectionModel that is used to maintain column selection state.
int getTotalColumnWidth() Documentation changed from old to new.
Returns the total combined width of all columns.
void moveColumn(int, int) Documentation changed from old to new.
Moves the column and heading at columnIndex to newIndex.
void propertyChange(PropertyChangeEvent) Documentation changed from old to new.
Property Change Listener change method.
void recalcWidthCache() Documentation changed from old to new.
Recalculates the total combined width of all columns.
void removeColumn(TableColumn) Documentation changed from old to new.
Deletes the 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 column margin to newMargin.
void setColumnSelectionAllowed(boolean) Documentation changed from old to new.
Sets whether column selection is allowed.
void setSelectionModel(ListSelectionModel) Documentation changed from old to new.
Sets the selection model for this TableColumnModel to newModel and registers for listener notifications from the new selection model.
void valueChanged(ListSelectionEvent) Documentation changed from old to new.
A ListSelectionListener that forwards ListSelectionEvents when there is a column selection change.