Generated by
JDiff

Class javax.swing.table.AbstractTableModel

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 addTableModelListener(TableModelListener) Documentation changed from old to new.
Adds a listener to the list that's notified each time a change to the data model occurs.
int findColumn(String) Documentation changed from old to new.
Returns a column given its name.
void fireTableCellUpdated(int, int) Documentation changed from old to new.
Notifies all listeners that the value of the cell at [row column] has been updated.
void fireTableChanged(TableModelEvent) Documentation changed from old to new.
Forwards the given notification event to all TableModelListeners that registered themselves as listeners for this table model.
void fireTableDataChanged() Documentation changed from old to new.
Notifies all listeners that all cell values in the table's rows may have changed.
void fireTableRowsDeleted(int, int) Documentation changed from old to new.
Notifies all listeners that rows in the range [firstRow lastRow] inclusive have been deleted.
void fireTableRowsInserted(int, int) Documentation changed from old to new.
Notifies all listeners that rows in the range [firstRow lastRow] inclusive have been inserted.
void fireTableRowsUpdated(int, int) Documentation changed from old to new.
Notifies all listeners that rows in the range [firstRow lastRow] inclusive have been updated.
void fireTableStructureChanged() Documentation changed from old to new.
Notifies all listeners that the table's structure has changed.
Class getColumnClass(int) Documentation changed from old to new.
Returns Object.class regardless of columnIndex.
String getColumnName(int) Documentation changed from old to new.
Returns a default name for the column using spreadsheet conventions: A B C ...
boolean isCellEditable(int, int) Documentation changed from old to new.
Returns false.
void removeTableModelListener(TableModelListener) Documentation changed from old to new.
Removes a listener from the list that's notified each time a change to the data model occurs.
void setValueAt(Object, int, int) Documentation changed from old to new.
This empty implementation is provided so users don't have to implement this method if their data model is not editable.