All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.ling.HasOriginalText Maven / Gradle / Ivy

Go to download

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy