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

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/
H A DTreeUI.java51 public abstract Rectangle getPathBounds(JTree tree, TreePath path); method in class:TreeUI
/openjdk10/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
/openjdk10/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);
/openjdk10/jdk/src/java.desktop/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,
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/multi/
H A DMultiTreeUI.java75 * Invokes the <code>getPathBounds</code> method on each UI handled by this object.
80 public Rectangle getPathBounds(JTree a, TreePath b) { method in class:MultiTreeUI
82 ((TreeUI) (uis.elementAt(0))).getPathBounds(a,b);
84 ((TreeUI) (uis.elementAt(i))).getPathBounds(a,b);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java643 public Rectangle getPathBounds(JTree tree, TreePath path) { method in class:BasicTreeUI
645 return getPathBounds(path, tree.getInsets(), new Rectangle());
650 private Rectangle getPathBounds(TreePath path, Insets insets, method in class:BasicTreeUI
1369 bounds = getPathBounds(path, insets, boundsBuffer);
1494 xRect = tree.getPathBounds(lastChildPath);
1501 rect = tree.getPathBounds(path.pathByAddingChild(
1506 rect = tree.getPathBounds(path.pathByAddingChild(
1627 Rectangle parentBounds = getPathBounds(tree, path);
1628 Rectangle lastChildBounds = getPathBounds(tree,
1654 parentBounds = getPathBounds(tre
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/metal/
H A DMetalTreeUI.java222 Rectangle rowBounds = getPathBounds(tree,getPathForRow
/openjdk10/jdk/test/javax/swing/JTree/DnD/
H A DLastNodeLowerHalfDrop.java118 jTree.getPathBounds(new TreePath(drag.getPath()));
123 jTree.getPathBounds(new TreePath(drop.getPath()));
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJTree.java1568 Rectangle pathBounds = getPathBounds(path);
2133 public Rectangle getPathBounds(TreePath path) { method in class:JTree
2137 return tree.getPathBounds(this, path);
2150 return getPathBounds(getPathForRow(row));
2166 Rectangle bounds = getPathBounds(path);
2293 Rectangle pathBounds = getPathBounds(closestPath);
2333 * @see #getPathBounds
5268 Rectangle pathBounds = tree.getPathBounds(path);
5300 Rectangle pathBounds = tree.getPathBounds(path);
5320 Rectangle r = tree.getPathBounds(pat
[all...]
/openjdk10/jdk/src/java.desktop/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
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/synth/
H A DSynthTreeUI.java338 bounds = getPathBounds(tree, path);
377 bounds = getPathBounds(tree, path);
657 r = tree.getPathBounds(loc.getPath());
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/operators/
H A DJTreeOperator.java1141 Rectangle rect = getPathBounds(path);
1325 Rectangle rect = getPathBounds(path);
2113 * Maps {@code JTree.getPathBounds(TreePath)} through queue
2115 public Rectangle getPathBounds(final TreePath treePath) { method in class:JTreeOperator
2116 return (runMapping(new MapAction<Rectangle>("getPathBounds") {
2119 return ((JTree) getSource()).getPathBounds(treePath);
/openjdk10/jdk/src/jdk.accessibility/windows/classes/com/sun/java/accessibility/internal/
H A DAccessBridge.java6772 Rectangle pathBounds = tree.getPathBounds(path);
6808 Rectangle pathBounds = tree.getPathBounds(path);
6823 Rectangle r = tree.getPathBounds(path);
6846 Rectangle r = tree.getPathBounds(path);

Completed in 210 milliseconds