// 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)) {