Description
Annotators does not produce any output result since the use the ResultSpec API in a wrong way
They do:
resultSpec.containsType("org.apache.uima.tutorial.TimeAnnot")
which checks the type for language x-unspecified
But the annotator only works for "en" as mentioned in the output spec so they have to do a check like:
resultSpec.containsType("org.apache.uima.tutorial.TimeAnnot","en")