try {
File stated = new File(
"src/test/resources/snomed_20110731_stated.owl");
IRI iriStated = IRI.create(stated.getAbsoluteFile());
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
OWLOntology ont = manager.loadOntology(iriStated);
for (String val : vals) {
OWLClass cl = manager.getOWLDataFactory().getOWLClass(
IRI.create(val));
System.out.println(val + " -> " + DebugUtils.getLabel(cl, ont)
+ " -> " + ont.getReferencingAxioms(cl).size());