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

de.datexis.nel.model.Context Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package de.datexis.nel.model;

import de.datexis.model.Span;
import de.datexis.preprocess.DocumentFactory;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Context is used to encode user's current state in an editor or reading scenario.
 * @author Sebastian Arnold 
 */
public class Context extends Span {

  protected final static Logger log = LoggerFactory.getLogger(Context.class);

  protected String text;
  protected int cursor;
  protected String timestamp;
  protected String language;
  
  @Override
  public String getText() {
    return text;
  }
  
  public int getCursor() {
    return cursor;
  }

  public String getTimestamp() {
    return timestamp;
  }
  
  public String getLanguage() {
    if(language != null) return language;
    else return DocumentFactory.getLanguage(text);
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy