Lines Matching refs:firstRow
88 protected int firstRow;
125 * The data in rows [<I>firstRow</I>, <I>lastRow</I>] have been updated.
127 public TableModelEvent(TableModel source, int firstRow, int lastRow) {
128 this(source, firstRow, lastRow, ALL_COLUMNS, UPDATE);
133 * [<I>firstRow</I>, <I>lastRow</I>] have been updated.
135 public TableModelEvent(TableModel source, int firstRow, int lastRow, int column) {
136 this(source, firstRow, lastRow, column, UPDATE);
140 * The cells from (firstRow, column) to (lastRow, column) have been changed.
147 public TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type) {
149 this.firstRow = firstRow;
162 public int getFirstRow() { return firstRow; };