Searched defs:getPathBounds (Results 1 - 6 of 6) sorted by relevance

/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/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/
H A DTreeUI.java45 public abstract Rectangle getPathBounds(JTree tree, TreePath path); method in class:TreeUI
/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/
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/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...]

Completed in 47 milliseconds