axioms.m_conceptInclusions.add(new OWLClassExpression[] { m_factory.getOWLObjectAllValuesFrom(m_bottomObjectProperty,m_factory.getOWLNothing()) });
}
protected void axiomatizeTopDataProperty(OWLAxioms axioms) {
OWLDatatype anonymousConstantsDatatype=m_factory.getOWLDatatype(IRI.create("internal:anonymous-constants"));
OWLTypedLiteral newConstant=m_factory.getOWLTypedLiteral("internal:constant",anonymousConstantsDatatype);
OWLDataOneOf oneOfNewConstant=m_factory.getOWLDataOneOf(newConstant);
OWLDataSomeValuesFrom hasTopNewConstant=m_factory.getOWLDataSomeValuesFrom(m_topDataProperty,oneOfNewConstant);
axioms.m_conceptInclusions.add(new OWLClassExpression[] { hasTopNewConstant });
}