Searched refs:lastRow (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableModelEvent.java89 protected int lastRow; 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
150 this.lastRow
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DAbstractTableModel.java221 * <code>[firstRow, lastRow]</code>, inclusive, have been inserted.
224 * @param lastRow the last 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.
240 * @param lastRow the last 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.
255 * @param lastRow th
260 fireTableRowsDeleted(int firstRow, int lastRow) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java1018 private boolean shouldOptimizeChange(int firstRow, int lastRow) { argument
1023 if (!sorted || (lastRow - firstRow) > viewToModel.length / 10) {
1031 private void rowsInserted0(int firstRow, int lastRow) { argument
1034 int delta = (lastRow - firstRow) + 1;
1038 for (i = firstRow; i <= lastRow; i++) {
1069 private void rowsDeleted0(int firstRow, int lastRow) { argument
1076 for (i = firstRow; i <= lastRow; i++) {
1085 int delta = lastRow - firstRow + 1;
1086 for (i = modelToView.length - 1; i > lastRow; i--) {
1120 private void rowsUpdated0(int firstRow, int lastRow) { argument
[all...]
H A DJTable.java6696 protected int lastRow; field in class:JTable.AccessibleJTable.AccessibleJTableModelChange
6701 int lastRow, int firstColumn,
6705 this.lastRow = lastRow;
6719 return lastRow;
6700 AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) argument
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java866 int lastRow = getRow() + 1;
867 int retValue = lastRow;
1061 int lastRow = row + 1;
1068 lastRow += (child.childIndex - lastModelIndex);
1071 lastRow = child.setRowAndChildren(lastRow);
1074 child.row = lastRow++;
1077 return lastRow + childCount - lastModelIndex;
1094 int lastRow = newRow;
1101 lastRow
[all...]
H A DDefaultTreeCellEditor.java106 protected transient int lastRow; field in class:DefaultTreeCellEditor
209 lastRow = row;
266 lastRow = tree.getRowForPath(path);
268 boolean isSelected = tree.isRowSelected(lastRow);
273 expanded, leaf, lastRow);
460 if(lastRow != -1 && tree != null) {
461 Rectangle bounds = tree.getRowBounds(lastRow);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java580 int lastRow = -1;
581 for (int i = initialRow; lastRow == -1; i++) {
584 lastRow = i - 1;
588 for (int i = lastRow; i >= initialRow; i--) {
H A DAquaFileSystemModel.java108 final int lastRow = fileCache.size();
110 fireTableRowsDeleted(0, lastRow);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java580 int lastRow = list.getModel().getSize() - 1;
581 if (lastRow < 0) {
593 Rectangle bounds = getCellBounds(list, lastRow);

Completed in 85 milliseconds