+ "rule1[dbs:Table(?x) -> lmm:Meaning(?x)]";
OWLNamedIndividual ontoind = factory.getOWLNamedIndividual(IRI.create(ID + "MyRuleX"));
OWLClassAssertionAxiom classAssertion = factory.getOWLClassAssertionAxiom(ontocls, ontoind);
owlmanager.addAxiom(owlmodel, classAssertion);
OWLDataProperty dataprop = factory.getOWLDataProperty(IRI.create(ID + "hasDescription"));
OWLDataPropertyAssertionAxiom dataPropAssertion = factory.getOWLDataPropertyAssertionAxiom(dataprop,
ontoind, "My comment to the rule X");
owlmanager.addAxiom(owlmodel, dataPropAssertion);
dataprop = factory.getOWLDataProperty(IRI.create(ID + "hasBodyAndHead"));
dataPropAssertion = factory.getOWLDataPropertyAssertionAxiom(dataprop, ontoind, rule);
owlmanager.addAxiom(owlmodel, dataPropAssertion);