public interface FireTableModel
| Modifier and Type | Method and Description |
|---|---|
void |
fireTableCellUpdated(int row,
int column)
Notifies all listeners that the value of the cell at
[row, column] has been updated. |
void |
fireTableDataChanged()
Notifies all listeners that all cell values in the table's
rows may have changed.
|
void |
fireTableRowsDeleted(int firstRow,
int lastRow)
Notifies all listeners that rows in the range
[firstRow, lastRow], inclusive, have been deleted. |
void |
fireTableRowsInserted(int firstRow,
int lastRow)
Notifies all listeners that rows in the range
[firstRow, lastRow], inclusive, have been inserted. |
void |
fireTableRowsUpdated(int firstRow,
int lastRow)
Notifies all listeners that rows in the range
[firstRow, lastRow], inclusive, have been updated. |
void |
fireTableStructureChanged()
Notifies all listeners that the table's structure has changed.
|
void fireTableDataChanged()
void fireTableStructureChanged()
void fireTableRowsInserted(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been inserted.firstRow - the first rowlastRow - the last rowvoid fireTableRowsUpdated(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been updated.firstRow - the first rowlastRow - the last rowvoid fireTableRowsDeleted(int firstRow,
int lastRow)
[firstRow, lastRow], inclusive, have been deleted.firstRow - the first rowlastRow - the last rowvoid fireTableCellUpdated(int row,
int column)
[row, column] has been updated.row - row of cell which has been updatedcolumn - column of cell which has been updated