Changed Constructors |
DefaultTableModel(int, int)
|
Documentation changed from old to new. |
Constructs a DefaultTableModel with rowCount and columnCount of null object values. |
DefaultTableModel(Object[], int)
|
Documentation changed from old to new. |
Constructs a DefaultTableModel with as many columns as there are elements in columnNames and rowCount of null object values. |
DefaultTableModel(Vector, int)
|
Documentation changed from old to new. |
Constructs a DefaultTableModel with as many columns as there are elements in columnNames and rowCount of null object values. |
Changed Methods |
String getColumnName(int )
|
Documentation changed from old to new. |
Returns the column name. |
void moveRow(int, int, int)
|
Documentation changed from old to new. |
Moves one or more rows from the inlcusive range start to end to the to position in the model. |
void newRowsAdded(TableModelEvent )
|
Documentation changed from old to new. |
Ensures that the new rows have the correct number of columns. |
void addColumn(Object )
|
Documentation changed from old to new. |
Adds a column to the model. |
void addColumn(Object, Vector)
|
Documentation changed from old to new. |
Adds a column to the model. |
void setDataVector(Object[][], Object[])
|
Documentation changed from old to new. |
Replaces the value in the dataVector instance variable with the values in the array dataVector . |
void setDataVector(Vector, Vector)
|
Documentation changed from old to new. |
Replaces the current dataVector instance variable with the new Vector of rows dataVector . |