Method getSelectionPaths()
Return type:
javax.swing.tree.TreePath
[]
Member of:
javax.swing.JTree
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return tree.getSelectionPaths();
2
reroot(getSelectionPaths());
3
TreePath [] selection = getSelectionPaths();
4
changeRelationship(getSelectionPaths(), type);
5
TreePath[] selectedPaths = tree.getSelectionPaths();
6
TreePath[] selectedPaths = tree.getSelectionPaths();
7
TreePath[] paths = tree.getSelectionPaths();
8
TreePath[] tps = tree.getSelectionPaths ();
9
TreePath path[] = removeDescendants(getSelectionPaths());
10
for (int i = 0; jtree.getSelectionPaths() != null && i < jtree.getSelectionPaths().length; i++)
11
TreePath[] paths = getSelectionPaths();
12
TreePath[] paths = m_tree.getSelectionPaths();
13
selectedPaths = jtree.getSelectionPaths();
14
TreePath[] selection = treBookmarks.getSelectionPaths();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.