addAxiom(getDataFactory().getOWLAnnotationPropertyRangeAxiom(prop, object, getPendingAnnotations()));
consumeTriple(subject, predicate, object);
}
private void translateAsDataPropertyRange(IRI subject, IRI predicate, IRI object) {
OWLDataPropertyExpression property = translateDataProperty(subject);
OWLDataRange dataRange = translateDataRange(object);
addAxiom(getDataFactory().getOWLDataPropertyRangeAxiom(property, dataRange, getPendingAnnotations()));
consumeTriple(subject, predicate, object);
}