Searched defs:firstRow (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableModelEvent.java88 protected int firstRow; field in class:TableModelEvent
125 * The data in rows [<I>firstRow</I>, <I>lastRow</I>] have been updated.
127 public TableModelEvent(TableModel source, int firstRow, int lastRow) { argument
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) { argument
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) { argument
149 this.firstRow
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DRowSorter.java234 * @param firstRow the first row
237 * <code>firstRow</code> &gt; <code>endRow</code>
239 public abstract void rowsInserted(int firstRow, int endRow); argument
253 * @param firstRow the first row
257 * <code>firstRow</code> &gt; <code>endRow</code>
259 public abstract void rowsDeleted(int firstRow, int endRow); argument
268 * @param firstRow the first row, in terms of the underlying model
272 * <code>firstRow</code> &gt; <code>endRow</code>
274 public abstract void rowsUpdated(int firstRow, int endRow); argument
283 * @param firstRow th
293 rowsUpdated(int firstRow, int endRow, int column) argument
[all...]
H A DDefaultRowSorter.java860 public void rowsInserted(int firstRow, int endRow) { argument
861 checkAgainstModel(firstRow, endRow);
867 if (shouldOptimizeChange(firstRow, endRow)) {
868 rowsInserted0(firstRow, endRow);
877 public void rowsDeleted(int firstRow, int endRow) { argument
878 checkAgainstModel(firstRow, endRow);
879 if (firstRow >= modelRowCount || endRow >= modelRowCount) {
883 if (shouldOptimizeChange(firstRow, endRow)) {
884 rowsDeleted0(firstRow, endRow);
893 public void rowsUpdated(int firstRow, in argument
913 rowsUpdated(int firstRow, int endRow, int column) argument
918 checkAgainstModel(int firstRow, int endRow) argument
1018 shouldOptimizeChange(int firstRow, int lastRow) argument
1031 rowsInserted0(int firstRow, int lastRow) argument
1069 rowsDeleted0(int firstRow, int lastRow) argument
1120 rowsUpdated0(int firstRow, int lastRow) argument
[all...]
H A DJTable.java6695 protected int firstRow; field in class:JTable.AccessibleJTable.AccessibleJTableModelChange
6700 protected AccessibleJTableModelChange(int type, int firstRow, argument
6704 this.firstRow = firstRow;
6715 return firstRow;
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DAbstractTableModel.java221 * <code>[firstRow, lastRow]</code>, inclusive, have been inserted.
223 * @param firstRow the first row
230 public void fireTableRowsInserted(int firstRow, int lastRow) { argument
231 fireTableChanged(new TableModelEvent(this, firstRow, lastRow,
237 * <code>[firstRow, lastRow]</code>, inclusive, have been updated.
239 * @param firstRow the first row
245 public void fireTableRowsUpdated(int firstRow, int lastRow) { argument
246 fireTableChanged(new TableModelEvent(this, firstRow, lastRow,
252 * <code>[firstRow, lastRow]</code>, inclusive, have been deleted.
254 * @param firstRow th
260 fireTableRowsDeleted(int firstRow, int lastRow) argument
[all...]

Completed in 59 milliseconds