Searched refs:leadRow (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java181 protected int leadRow; field in class:BasicTableUI.Actions
227 leadRow = clipToRange(leadRow+dy, 0, table.getRowCount());
299 (totalCount == 1 && table.isCellSelected(leadRow, leadColumn))) {
317 leadRow = -1;
318 } else if (dx == 1 && leadRow == -1) {
319 leadRow = minY;
323 leadRow = maxY + 1;
324 } else if (dx == -1 && leadRow == -1) {
325 leadRow
[all...]
H A DBasicTreeUI.java167 private int leadRow; field in class:BasicTreeUI
662 leadRow = -1;
2446 leadRow = getRowForPath(tree, newPath);
2476 leadRow = getRowForPath(tree, getLeadSelectionPath());
2486 return leadRow;
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java96 protected int leadRow; field in class:DefaultTreeSelectionModel
113 leadIndex = leadRow = -1;
572 leadIndex = leadRow = -1;
781 leadRow = rows[leadIndex];
787 leadRow = (rows != null) ? rows[0] : -1;
790 leadRow = -1;
796 leadRow = -1;
804 return leadRow;
1102 leadIndex = leadRow = -1;
1105 leadRow
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java4638 int leadRow = getAdjustedIndex(selectionModel.getLeadSelectionIndex(), true);
4641 if (leadRow == -1) {
4647 minRow = maxRow = leadRow;
4652 if (leadRow != -1) {
4653 minRow = Math.min(minRow, leadRow);
4654 maxRow = Math.max(maxRow, leadRow);
5279 int leadRow = getSelectionModel().getLeadSelectionIndex();
5282 if (leadRow != -1 && leadColumn != -1 && !isEditing()) {
5283 if (!editCellAt(leadRow, leadColumn, e)) {

Completed in 102 milliseconds