Package org.apache.uima.tools.cvd
Class FSTreeNode
- java.lang.Object
-
- org.apache.uima.tools.cvd.FSTreeNode
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<FSTreeNode>childrenThe children.
-
Constructor Summary
Constructors Constructor Description FSTreeNode()Instantiates a new FS tree node.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) intgetChildCount()Gets the child count.(package private) java.util.List<FSTreeNode>getChildren()Gets the children.protected abstract voidinitChildren()Inits the children.(package private) voidremoveAllChildren()Removes the all children.(package private) voidsetChildren(java.util.List<FSTreeNode> children)Sets the children.
-
-
-
Field Detail
-
children
protected java.util.List<FSTreeNode> children
The children.
-
-
Method Detail
-
removeAllChildren
void removeAllChildren()
Removes the all children.
-
setChildren
void setChildren(java.util.List<FSTreeNode> children)
Sets the children.- Parameters:
children- the new children
-
getChildren
java.util.List<FSTreeNode> getChildren()
Gets the children.- Returns:
- the children
-
getChildCount
int getChildCount()
Gets the child count.- Returns:
- the child count
-
initChildren
protected abstract void initChildren()
Inits the children.
-
-