Suppose a Protege file which is saved as "module.owl" in Rdf/xml serialized form and we want to import it in Jena, what classes will we use? I mean RDF classes like
Model model = ModelFactory.createDefaultModel();
OR Ontmodel classes and methods like
OntModel m = ModelFactory.createOntologyModel();
I am confused so kindly explain the situation when to use RDF and when
to use OWL classes when working on Protege and Jena.
