Package | Description |
---|---|
gov.nasa.worldwind.util.tree |
A tree control drawn in the WorldWindow.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Set<TreePath> |
BasicTree.expandedNodes |
Modifier and Type | Method and Description |
---|---|
TreePath |
TreeNode.getPath()
Get the path from the root node to this node.
|
TreePath |
BasicTreeNode.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.
|
Modifier and Type | Method and Description |
---|---|
void |
Tree.collapsePath(TreePath path)
Collapse a path in the tree.
|
void |
BasicTree.collapsePath(TreePath path)
Collapse a path in the tree.
|
void |
Tree.expandPath(TreePath path)
Expand a path in the tree.
|
void |
BasicTree.expandPath(TreePath path)
Expand a path in the tree.
|
TreeNode |
Tree.getNode(TreePath path)
Locate a node in the tree.
|
TreeNode |
BasicTree.getNode(TreePath path)
Locate a node in the tree.
|
static boolean |
TreePath.isEmptyPath(TreePath path)
Determines if a path is empty.
|
boolean |
Tree.isPathExpanded(TreePath path)
Is a path expanded in the tree?
|
boolean |
BasicTree.isPathExpanded(TreePath path)
Is a path expanded in the tree?
|
void |
TreeLayout.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 |
BasicTreeLayout.makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.
|
void |
BasicTree.makeVisible(TreePath path)
Make a node in the tree visible in the rendered tree.
|
void |
Tree.togglePath(TreePath path)
Expand a collapsed path, or collapse an expanded path.
|
void |
BasicTree.togglePath(TreePath path)
Expand a collapsed path, or collapse an expanded path.
|
Constructor and Description |
---|
TreePath(TreePath initialPath,
java.lang.String... args)
Create a tre path.
|