public interface TreeVisitor
Tree
. It typically is called iteratively over
trees in a Treebank
. The convention is for TreeVisitor
implementing
classes not to affect Tree
instances they operate on, but to accomplish things via
side effects (like counting statistics over trees, etc.).void visitTree(Tree t)
t
- A tree. Classes implementing this interface can assume
that the tree passed in is not null
.