Package org.apache.clerezza.uima.utils.ts

Examples of org.apache.clerezza.uima.utils.ts.WikipediaEntityAnnotation


  }

  private FSList findSTSAnnotations(JCas jcas) {
    NonEmptyFSList annotations = new NonEmptyFSList(jcas);
    WikipediaEntityAnnotation annotation = new WikipediaEntityAnnotation(jcas);
    annotation.setBegin(0);
    annotation.setEnd(1);
    annotation.setUri("http://somesite.org/#STS135cit1");
    annotation.addToIndexes();
    annotations.setHead(annotation);
    return annotations;
  }
View Full Code Here

TOP

Related Classes of org.apache.clerezza.uima.utils.ts.WikipediaEntityAnnotation

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.