edu.stanford.nlp.trees.HasParent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stanford-parser Show documentation
Show all versions of stanford-parser Show documentation
Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.
package edu.stanford.nlp.trees;
/**
* Only to be implemented by Tree subclasses that actualy keep their
* parent pointers. For example, the base Tree class should
* not implement this, but TreeGraphNode should.
*
* @author John Bauer
*/
public interface HasParent {
Tree parent();
}