Searched refs:getPathBounds (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTreeUI.java45 public abstract Rectangle getPathBounds(JTree tree, TreePath path); method in class:TreeUI
/openjdk7/jdk/test/javax/swing/JTree/8003830/
H A Dbug8003830.java36 * @summary NullPointerException in BasicTreeUI.Actions when getPathBounds returns null
60 public Rectangle getPathBounds(JTree tree, TreePath path) { method in class:bug8003830.NullReturningTreeUI
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTreeUI.java72 Rectangle scrollBounds = getPathBounds(tree, getPathForRow
82 Rectangle beginRect = getPathBounds(tree, getPathForRow
90 testRect = getPathBounds(tree,
/openjdk7/jdk/test/javax/swing/JTree/8004298/
H A Dbug8004298.java111 public Rectangle getPathBounds(JTree tree, TreePath path) { method in class:bug8004298.NullReturningTreeUI
118 return super.getPathBounds(tree, path);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiTreeUI.java73 * Invokes the <code>getPathBounds</code> method on each UI handled by this object.
78 public Rectangle getPathBounds(JTree a, TreePath b) { method in class:MultiTreeUI
80 ((TreeUI) (uis.elementAt(0))).getPathBounds(a,b);
82 ((TreeUI) (uis.elementAt(i))).getPathBounds(a,b);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java519 public Rectangle getPathBounds(JTree tree, TreePath path) { method in class:BasicTreeUI
521 return getPathBounds(path, tree.getInsets(), new Rectangle());
526 private Rectangle getPathBounds(TreePath path, Insets insets, method in class:BasicTreeUI
1191 bounds = getPathBounds(path, insets, boundsBuffer);
1316 xRect = tree.getPathBounds(lastChildPath);
1322 rect = tree.getPathBounds(path.pathByAddingChild(
1426 Rectangle parentBounds = getPathBounds(tree, path);
1427 Rectangle lastChildBounds = getPathBounds(tree,
1453 parentBounds = getPathBounds(tree, path.
1935 Rectangle scrollBounds = getPathBounds(tre
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTreeUI.java196 Rectangle rowBounds = getPathBounds(tree,getPathForRow
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java1550 Rectangle pathBounds = getPathBounds(path);
2099 public Rectangle getPathBounds(TreePath path) { method in class:JTree
2103 return tree.getPathBounds(this, path);
2116 return getPathBounds(getPathForRow(row));
2132 Rectangle bounds = getPathBounds(path);
2258 Rectangle pathBounds = getPathBounds(closestPath);
2298 * @see #getPathBounds
5115 Rectangle pathBounds = tree.getPathBounds(path);
5147 Rectangle pathBounds = tree.getPathBounds(path);
5162 Rectangle r = tree.getPathBounds(pat
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java151 final Rectangle rowBounds = getPathBounds(tree, getPathForRow(tree, i));
472 final Rectangle bounds = getPathBounds(tree, path); // Gives us the y values, but x is adjusted for the contents
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java356 bounds = getPathBounds(tree, path);
395 bounds = getPathBounds(tree, path);
667 r = tree.getPathBounds(loc.getPath());

Completed in 78 milliseconds