public interface ITestDataTreeNode
Tree test-data object.| Modifier and Type | Method and Description |
|---|---|
int |
getChildCount()
Returns the number of child nodes from this node.
|
ITestDataTreeNode[] |
getChildren()
Returns the child nodes relative to this node.
|
boolean |
getMasked()
Returns
true if this node in the tree
should be masked from comparison in a verification-point
replay. |
java.lang.Object |
getNode()
Returns a description of the node itself.
|
ITestDataTreeNode |
getParent()
Returns the parent node of a tree structure.
|
ITestDataTree |
getTree()
This method returns the reference to tree.
|
void |
setChildren(ITestDataTreeNode[] children)
Sets the child nodes of this node.
|
void |
setMasked(boolean masked)
Sets the masked attribute of the element of
this node.
|
void |
setNode(java.lang.Object node)
Sets a description of the node itself.
|
void |
setParent(ITestDataTreeNode parent)
Sets the parent node of a tree structure.
|
void |
setTree(ITestDataTree tree)
This method sets the reference to tree.
|
java.lang.Object getNode()
void setNode(java.lang.Object node)
ITestDataTreeNode getParent()
void setParent(ITestDataTreeNode parent)
int getChildCount()
ITestDataTreeNode[] getChildren()
void setChildren(ITestDataTreeNode[] children)
children - the children of this nodeboolean getMasked()
true if this node in the tree
should be masked from comparison in a verification-point
replay.void setMasked(boolean masked)
masked - true if this node should be ignored
in a comparison operationvoid setTree(ITestDataTree tree)
ITestDataTree getTree()