Searched defs:newPath (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicPopupMenuUI.java299 MenuElement newPath[] = new MenuElement[0];
300 newPath = lst.toArray(newPath);
301 MenuSelectionManager.defaultManager().setSelectedPath(newPath);
369 MenuElement newPath[] = new MenuElement[path.length+1];
370 System.arraycopy(path, 0, newPath, 0, path.length);
371 newPath[path.length] = newItem;
372 manager.setSelectedPath(newPath);
447 MenuElement newPath[] = new MenuElement[path.length+1];
448 System.arraycopy(path,0,newPath,
750 grabWindow(MenuElement[] newPath) argument
[all...]
H A DBasicTreeUI.java2419 private void setAnchorSelectionPath(TreePath newPath) { argument
2422 tree.setAnchorSelectionPath(newPath);
2432 private void setLeadSelectionPath(TreePath newPath) { argument
2433 setLeadSelectionPath(newPath, false);
2436 private void setLeadSelectionPath(TreePath newPath, boolean repaint) { argument
2442 tree.setLeadSelectionPath(newPath);
2446 leadRow = getRowForPath(tree, newPath);
2452 bounds = getPathBounds(tree, newPath);
4182 TreePath newPath;
4186 newPath
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java1654 * @param newPath the new lead path
1660 public void setLeadSelectionPath(TreePath newPath) { argument
1663 leadPath = newPath;
1664 firePropertyChange(LEAD_SELECTION_PATH_PROPERTY, oldValue, newPath);
1674 * @param newPath the new anchor path
1680 public void setAnchorSelectionPath(TreePath newPath) { argument
1683 anchorPath = newPath;
1684 firePropertyChange(ANCHOR_SELECTION_PATH_PROPERTY, oldValue, newPath);

Completed in 56 milliseconds