200201202203204205206207
/** * Force the table to refresh the listed elements */ public void refresh() { notifyListeners(new TableModelChangeEvent( TableModelChangeEvent.COLUMN_UPDATED, this, -1, 0)); }
254255256257258259260261
/** * Notifies the view that the table data has been updated. */ public void refresh() { notifyListeners(new TableModelChangeEvent( TableModelChangeEvent.COLUMN_UPDATED, this, -1, 0)); }
167168169170171172173174
* The row to insert */ public void swapRow(final int index, final Object row) { PhoneLogsDemo.this._phoneLogs.swapCall((CallLog) row, index, _folder); notifyListeners(new TableModelChangeEvent( TableModelChangeEvent.ROW_UPDATED, this, index, -1)); }