Properties props = getTimeAnnotatorProperties(request);
String annotatorType = request.getParameter("annotator");
if (annotatorType == null) {
annotatorType = "sutime";
}
Annotator timeAnnotator = pipeline.getTimeAnnotator(annotatorType, props);
if (timeAnnotator != null) {
Annotation anno = pipeline.process(query, dateString, timeAnnotator);
out.println("<h3>Annotated Text</h3> <em>(tagged using " + annotatorType + "</em>)");
displayAnnotation(out, query, anno, includeOffsets);
} else {