}
public void handle(String id, String value) {
// This is an annotation - but add as a label
OWLEntity ent;
if (getConsumer().isTerm()) {
ent = getDataFactory().getOWLClass(getIRIFromValue(id));
} else if (getConsumer().isTypedef()) {
ent = getDataFactory().getOWLObjectProperty(getIRIFromValue(id));
} else {
ent = getDataFactory().getOWLNamedIndividual(getIRIFromValue(id));
}
OWLLiteral con = getDataFactory().getOWLTypedLiteral(value);
OWLAxiom ax = getDataFactory().getOWLAnnotationAssertionAxiom(getDataFactory().getOWLAnnotationProperty(OWLRDFVocabulary.RDFS_LABEL.getIRI()), ent.getIRI(), con);
applyChange(new AddAxiom(getOntology(), ax));
}