Package org.cleartk.timeml.type

Examples of org.cleartk.timeml.type.Time


public class TimexToClearTKTimexAnnotator extends JCasAnnotator_ImplBase {

  @Override
  public void process(JCas jCas) throws AnalysisEngineProcessException {
    for(TimeMention timex : JCasUtil.select(jCas, TimeMention.class)){
      Time time = new Time(jCas);
      time.setBegin(timex.getBegin());
      time.setEnd(timex.getEnd());
      time.addToIndexes();
    }
  }
View Full Code Here

TOP

Related Classes of org.cleartk.timeml.type.Time

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.