@Override
public void handle(String currentId, String value, String qualifierBlock,
String comment) {
if (getConsumer().isTerm()) {
// We simply add a subclass axiom
applyChange(new AddAxiom(getOntology(), getDataFactory()
.getOWLSubClassOfAxiom(getClassFromId(currentId),
getClassFromId(value))));
} else if (getConsumer().isTypedef()) {
// We simply add a sub property axiom
applyChange(new AddAxiom(getOntology(), getDataFactory()
.getOWLSubObjectPropertyOfAxiom(
getOWLObjectProperty(currentId),
getOWLObjectProperty(value))));
}
}