List<Feature> features = new ArrayList<Feature>();
// first get the root and print it out...
TopTreebankNode root = AnnotationTreeUtils.getTreeCopy(jcas, AnnotationTreeUtils.getAnnotationTree(jcas, arg1));
if(root == null){
SimpleTree fakeTree = new SimpleTree("(S (NN null))");
features.add(new TreeFeature("TK_PET", fakeTree.toString()));
return features;
}
// swap the order if necessary:
if(arg2.getBegin() <= arg1.getBegin() && arg2.getEnd() <= arg1.getEnd()){
IdentifiedAnnotation temp = arg1;
arg1 = arg2;
arg2 = temp;
}
String a1type="", a2type="";
String eventModality="";
String timeClass;
if(arg1 instanceof EventMention){
EventMention mention = (EventMention) arg1;
if(mention.getEvent() != null && mention.getEvent().getProperties() != null){
eventModality = mention.getEvent().getProperties().getContextualModality();
}
a1type = "EVENT-"+eventModality;
}else if(arg1 instanceof TimeMention){
timeClass = ((TimeMention)arg1).getTimeClass();
a1type = "TIMEX-"+timeClass;
}
if(arg2 instanceof EventMention){
EventMention mention = (EventMention) arg2;
if(mention.getEvent() != null && mention.getEvent().getProperties() != null){
eventModality = mention.getEvent().getProperties().getContextualModality();
}
a2type = "EVENT-"+eventModality;
}else if(arg2 instanceof TimeMention){
timeClass = ((TimeMention)arg2).getTimeClass();
a2type = "TIMEX-"+timeClass;
}
TreebankNode t1 = AnnotationTreeUtils.insertAnnotationNode(jcas, root, arg1, "ARG1-"+a1type);
TreebankNode t2 = AnnotationTreeUtils.insertAnnotationNode(jcas, root, arg2, "ARG2-"+a2type);
// addOtherTimes(jcas,root, arg1, arg2);
SimpleTree tree = null;
if(t1.getBegin() <= t2.getBegin() && t1.getEnd() >= t2.getEnd()){
// t1 encloses t2
tree = TreeExtractor.getSimpleClone(t1);
}else if(t2.getBegin() <= t1.getBegin() && t2.getEnd() >= t1.getEnd()){
// t2 encloses t1
tree = TreeExtractor.getSimpleClone(t2);
}else{
tree = TreeExtractor.extractPathEnclosedTree(t1, t2, jcas);
}
tree.setGeneralizeLeaf(true);
moveTimexDownToNP(tree);
simplifyGCG(tree);
features.add(new TreeFeature("TK_PET", tree.toString()));
return features;
}