return false;
}
final protected int compareObjectOfSameType(OWLObject object) {
OWLAnnotationAxiom other = (OWLAnnotationAxiom) object;
int diff = subject.compareTo(other.getSubject());
if(diff != 0) {
return diff;
}
return annotation.compareTo(other.getAnnotation());
}