Package org.cleartk.timeml.type

Examples of org.cleartk.timeml.type.DocumentCreationTime


    // TODO Auto-generated constructor stub
  }

  @Override
  public void process(JCas jCas) throws AnalysisEngineProcessException {
    DocumentCreationTime dct = JCasUtil.selectSingle(jCas, DocumentCreationTime.class);
    Map<EventMention, String> docTimeRels = Maps.newHashMap();
    for (TemporalLink tlink : JCasUtil.select(jCas, TemporalLink.class)) {
      Anchor source = tlink.getSource();
      Anchor target = tlink.getTarget();
      if (source instanceof org.cleartk.timeml.type.Event && target.equals(dct)) {
View Full Code Here


  @Override
  public void process(JCas jCas)
      throws AnalysisEngineProcessException {
    // create a cleartk dct object
    DocumentCreationTime dct = new DocumentCreationTime(jCas);

    dct.addToIndexes();
  }
View Full Code Here

TOP

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

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.