Uses of Class
gov.nasa.worldwind.util.tree.TreePath
-
Packages that use TreePath Package Description gov.nasa.worldwind.util.tree A tree control drawn in the WorldWindow. -
-
Uses of TreePath in gov.nasa.worldwind.util.tree
Fields in gov.nasa.worldwind.util.tree with type parameters of type TreePath Modifier and Type Field Description protected java.util.Set<TreePath>
BasicTree. expandedNodes
Methods in gov.nasa.worldwind.util.tree that return TreePath Modifier and Type Method Description TreePath
BasicTreeNode. getPath()
Get the path from the root node to this node.TreePath
TreeNode. getPath()
Get the path from the root node to this node.TreePath
TreePath. lastButOne()
Retrieves the a sub-section of this path from the first element to the second to last element.TreePath
TreePath. subPath(int start, int end)
Retrieves a subsection of the path.Methods in gov.nasa.worldwind.util.tree with parameters of type TreePath Modifier and Type Method Description void
BasicTree. collapsePath(TreePath path)
Collapse a path in the tree.void
Tree. collapsePath(TreePath path)
Collapse a path in the tree.void
BasicTree. expandPath(TreePath path)
Expand a path in the tree.void
Tree. expandPath(TreePath path)
Expand a path in the tree.TreeNode
BasicTree. getNode(TreePath path)
Locate a node in the tree.TreeNode
Tree. getNode(TreePath path)
Locate a node in the tree.static boolean
TreePath. isEmptyPath(TreePath path)
Determines if a path is empty.boolean
BasicTree. isPathExpanded(TreePath path)
Is a path expanded in the tree?boolean
Tree. isPathExpanded(TreePath path)
Is a path expanded in the tree?void
BasicTree. makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.void
BasicTreeLayout. makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.void
Tree. makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.void
TreeLayout. makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.void
BasicTree. togglePath(TreePath path)
Expand a collapsed path, or collapse an expanded path.void
Tree. togglePath(TreePath path)
Expand a collapsed path, or collapse an expanded path.Constructors in gov.nasa.worldwind.util.tree with parameters of type TreePath Constructor Description TreePath(TreePath initialPath, java.lang.String... args)
Create a tre path.
-