| |
|
| java.lang.Object ob.tree.TreeNode ob.tree.TreeNodeX
All known Subclasses: ob.tree.Node,
TreeNodeX | public class TreeNodeX extends TreeNode (Code) | | This class describes an individual node in the tree which can contain
other children nodes. The ob.tree.Node class further extends the TreeNodeX
class to provide further methods to customize the nodes. Many of these methods
are used internally and will not need to be manipulated by the developer.
See Also: ob.tree.TreeBase See Also: ob.tree.Node See Also: ob.listbox.ListBox |
m_root_nFilterLevel | int m_root_nFilterLevel(Code) | | |
getFilterLevel | public int getFilterLevel()(Code) | | retrieves the filter level
filter level as type int |
getFirstChild | public TreeNode getFirstChild()(Code) | | gets the first child node
first child as type TreeNode |
getNextSibling | public TreeNode getNextSibling()(Code) | | retrieves the next sibling node
next sibling node as type TreeNode |
getParent | public TreeNode getParent()(Code) | | retrieves the parent node
parent node as type TreeNode |
getPrevSibling | public TreeNode getPrevSibling()(Code) | | retrieves the previous sibling node
previous sibling as type TreeNode |
getUnfilteredDistanceFromRoot | public int getUnfilteredDistanceFromRoot()(Code) | | retrieves the unfiltered distance from the root
unfiltered distance as type int |
setFilterLevel | public boolean setFilterLevel(int nLevel)(Code) | | sets the filter level
Parameters: nLevel - which level to filter whether filter was successful |
|
|
|