OWLAnnotationProperty prop = AnnotationProperty(IRI("http://owlapi.sourceforge.net/ontology#prop"));
OWLLiteral lit1 = Literal(getEscape());
OWLLiteral lit2 = Literal("Start" + getEscape());
OWLLiteral lit3 = Literal(getEscape() + "End");
OWLLiteral lit4 = Literal("Start" + getEscape() + "End");
OWLAnnotationAssertionAxiom ax1 = AnnotationAssertion(prop,
cls.getIRI(), lit1);
OWLAnnotationAssertionAxiom ax2 = AnnotationAssertion(prop,
cls.getIRI(), lit2);
OWLAnnotationAssertionAxiom ax3 = AnnotationAssertion(prop,
cls.getIRI(), lit3);
OWLAnnotationAssertionAxiom ax4 = AnnotationAssertion(prop,
cls.getIRI(), lit4);
return Ontology(m, ax1, ax2, ax3, ax4, Declaration(cls));
}