Searched defs:beginRow (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java65 * Ensures that the rows identified by beginRow through endRow are
68 protected void ensureRowsAreVisible(int beginRow, int endRow) { argument
69 if(tree != null && beginRow >= 0 && endRow < getRowCount(tree)) {
71 if(beginRow == endRow) {
73 (tree, beginRow));
83 (tree, beginRow));
89 for(int counter = beginRow + 1; counter <= endRow; counter++) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java1927 * Ensures that the rows identified by beginRow through endRow are
1930 protected void ensureRowsAreVisible(int beginRow, int endRow) { argument
1931 if(tree != null && beginRow >= 0 && endRow < getRowCount(tree)) {
1934 if(beginRow == endRow) {
1936 (tree, beginRow));
1948 (tree, beginRow));
1955 for(int counter = beginRow + 1; counter <= endRow; counter++) {

Completed in 41 milliseconds