Should we be defaulting UNKNOWN type NE's to MedicationEventMention? Wouldn't it make more sense if CONST.NE_TYPE_ID_UNKNOWN to create an EventMention rather than Medication?
<snip>
IdentifiedAnnotation neAnnot;
if ( typeId == CONST.NE_TYPE_ID_DRUG || typeId ==
CONST.NE_TYPE_ID_UNKNOWN ) {
neAnnot = new MedicationEventMention( jcas );
} else {
neAnnot = new EntityMention( jcas );
}
</snip>
