Package org.cleartk.timeml.type

Examples of org.cleartk.timeml.type.Event


  public void process(JCas jCas) throws AnalysisEngineProcessException {
    for (EventMention eMention : JCasUtil.select(jCas, EventMention.class)) {
      // needed because SignSymptomMention, etc. do not have EventProperties
      if (eMention.getClass().equals(EventMention.class)) {
        // create a cleartk event object
        Event event = new Event(jCas);
        event.setBegin(eMention.getBegin());
        event.setEnd(eMention.getEnd());

        event.addToIndexes();
      }
    }

  }
View Full Code Here

TOP

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

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.