Package jadex.base.gui.filetree
Class TreeProperties
- java.lang.Object
-
- jadex.base.gui.filetree.TreeProperties
-
public class TreeProperties extends java.lang.Object
Struct for storing Tree properties.
-
-
Constructor Summary
Constructors Constructor Description TreeProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodePath[]
getExpandedNodes()
Get the expanded nodes.java.lang.String[]
getRootPathEntries()
Get the root node.NodePath
getSelectedNode()
Get the selected node.void
setExpandedNodes(NodePath[] expanded)
Set the expanded nodes.void
setRootPathEntries(java.lang.String[] roots)
Set the root path entries.void
setSelectedNode(NodePath selected)
Set the selected node.
-
-
-
Method Detail
-
getRootPathEntries
public java.lang.String[] getRootPathEntries()
Get the root node.
-
getSelectedNode
public NodePath getSelectedNode()
Get the selected node.
-
getExpandedNodes
public NodePath[] getExpandedNodes()
Get the expanded nodes.
-
setRootPathEntries
public void setRootPathEntries(java.lang.String[] roots)
Set the root path entries.
-
setSelectedNode
public void setSelectedNode(NodePath selected)
Set the selected node.
-
setExpandedNodes
public void setExpandedNodes(NodePath[] expanded)
Set the expanded nodes.
-
-