Generated by
JDiff

Interface javax.swing.table.TableModel

Documentation changed from old to new.

Changed Methods
void addTableModelListener(TableModelListener) Documentation changed from old to new.
Adds a listener to the list that is notified each time a change to the data model occurs.
Class getColumnClass(int) Documentation changed from old to new.
Returns the most specific superclass for all the cell values in the column.
int getColumnCount() Documentation changed from old to new.
Returns the number of columns in the model.
String getColumnName(int) Documentation changed from old to new.
Returns the name of the column at columnIndex.
int getRowCount() Documentation changed from old to new.
Returns the number of rows in the model.
Object getValueAt(int, int) Documentation changed from old to new.
Returns the value for the cell at columnIndex and rowIndex.
boolean isCellEditable(int, int) Documentation changed from old to new.
Returns true if the cell at rowIndex and columnIndex is editable.
void removeTableModelListener(TableModelListener) Documentation changed from old to new.
Removes a listener from the list that is notified each time a change to the data model occurs.
void setValueAt(Object, int, int) Documentation changed from old to new.
Sets the value in the cell at columnIndex and rowIndex to aValue.