/** Notifies all listeners that rows in the range [firstRow_, lastRow_],
* inclusive, have been inserted.
*/
public void fireTableRowsInserted(int firstRow_, int lastRow_) {
TableModelEvent evt = new TableModelEvent(
this, firstRow_, lastRow_, TableModelEvent.ALL_COLUMNS,
TableModelEvent.INSERT);
fireTableChanged(evt);
}