edu.stanford.nlp.trees
Interface TreeProcessor


public interface TreeProcessor

This is a simple interface for operations that are going to be applied to a Tree. It typically is called iteratively over trees in a Treebank


Method Summary
 void processTree(Tree t)
          Does whatever one needs to do to a particular parse tree.
 

Method Detail

processTree

public void processTree(Tree t)
Does whatever one needs to do to a particular parse tree.

Parameters:
t - A tree. Classes implementing this interface can assume that the tree passed in is not null.


Stanford NLP Group