edu.stanford.nlp.trees.TreeReaderFactory 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.
The newest version!
package edu.stanford.nlp.trees;
import java.io.Reader;
/**
* A TreeReaderFactory
is a factory for creating objects of
* class TreeReader
, or some descendant class.
*
* @author Christopher Manning
*/
public interface TreeReaderFactory {
/**
* Create a new TreeReader
using the provided
* Reader
.
*
* @param in The Reader
to build on
* @return The new TreeReader
*/
public TreeReader newTreeReader(Reader in);
}