return result;
}
private Set<OWLClass> extractChildren(OWLClass parent) {
ChildClassExtractor childClassExtractor = new ChildClassExtractor();
childClassExtractor.setCurrentParentClass(parent);
for (OWLOntology ont : ontologies) {
for (OWLAxiom ax : ont.getReferencingAxioms(parent)) {
if (ax.isLogicalAxiom()) {
ax.accept(childClassExtractor);
}
}
}
return childClassExtractor.getResult();
}