edu.stanford.nlp.ling.HasOriginalText 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.ling;
/**
* This token can produce / set original texts
*
* @author Gabor Angeli
*/
public interface HasOriginalText {
// These next two are a partial implementation of HasContext. Maybe clean this up someday?
String originalText();
void setOriginalText(String originalText);
}