}
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;
}