edu.stanford.nlp.trees.SimpleConstituentFactory 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;
import edu.stanford.nlp.ling.Label;
/**
* A ConstituentFactory
acts as a factory for creating objects
* of class Constituent
, or some descendent class.
* An interface.
*
* @author Christopher Manning
*/
public class SimpleConstituentFactory implements ConstituentFactory {
public Constituent newConstituent(int start, int end) {
return new SimpleConstituent(start, end);
}
public Constituent newConstituent(int start, int end, Label label, double score) {
return new SimpleConstituent(start, end);
}
}