OWL: get Class from an existent Antology

Posted by Gabriele on Stack Overflow See other posts from Stack Overflow or by Gabriele
Published on 2010-06-11T09:36:39Z Indexed on 2010/06/11 9:43 UTC
Read the original article Hit count: 497

Filed under:
|

How can I get an existent Class from an Ontology with owlAPI?

This is a fragment of my ontology:

...
  <owl:Class rdf:ID="StringDocu">
    <owl:equivalentClass>
      <owl:Restriction>
        <owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
        <owl:onProperty rdf:resource="#hasContent"/>
      </owl:Restriction>
    </owl:equivalentClass>
    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
    >String Docu</rdfs:label>
    <rdfs:subClassOf rdf:resource="#Docu"/>
    <owl:disjointWith rdf:resource="#URIDocu"/>
    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
    >This class concerns a docu with the content specified as common text.</rdfs:comment>
  </owl:Class>
...

I start whit this code:

String ontologyUri = "http://mysite.com/my_ontology.owl";
OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
OWLOntology ontology = manager.createOntology(IRI.create(ontologyUri));
OWLDataFactory factory = manager.getOWLDataFactory();

and now I want to retrieve the "StringDocu" class. How can I get this?

© Stack Overflow or respective owner

Related posts about java

Related posts about owl