Package org.nineml.coffeegrinder.trees
Class ParseTree
- java.lang.Object
-
- org.nineml.coffeegrinder.trees.ParseTree
-
public class ParseTree extends java.lang.ObjectA parse tree used when finding trees in the forest.This tree is exposed to the
Axeduring tree construction so that it's possible to determine what parts of the tree have already been constructed.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ParseTree>getChildren()Get the children of the tree.java.lang.StringtoString()
-
-
-
Method Detail
-
getChildren
public java.util.List<ParseTree> getChildren()
Get the children of the tree.- Returns:
- the children.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-