// FULL?
Collection<OWLIndividual> finder = values(
testCasesOntology.getObjectPropertyAssertionAxioms(ind),
speciesProperty);
if (finder.contains(full)) {
checkProfile(ontology, new OWL2Profile(), true);
}
Collection<OWLIndividual> negativeFinder = negValues(
testCasesOntology
.getNegativeObjectPropertyAssertionAxioms(ind),
speciesProperty);
if (negativeFinder.contains(full)) {
checkProfile(ontology, new OWL2Profile(), false);
}
// DL?
if (finder.contains(dl)) {
checkProfile(ontology, new OWL2DLProfile(), true);
}