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>
children
The 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) int
getChildCount()
Gets the child count.(package private) java.util.List<FSTreeNode>
getChildren()
Gets the children.protected abstract void
initChildren()
Inits the children.(package private) void
removeAllChildren()
Removes the all children.(package private) void
setChildren(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.
-
-