}
return false;
}
protected int compareObjectOfSameType(OWLObject object) {
OWLAnnotation other = (OWLAnnotation) object;
int diff = getAnnotationURI().compareTo(other.getAnnotationURI());
if(diff != 0) {
return diff;
}
else {
return getAnnotationValue().compareTo(other.getAnnotationValue());
}
}