net.sansa_stack.owl.common.parsing
To get the corresponding OWLOntology of a certain model
To get the corresponding OWLOntology of a certain model
Model
OWLOntology corresponding to that model
Builds a snippet conforming to the RDF/XML syntax which then can be parsed by the OWL API RDF/XML syntax parser.
Builds a snippet conforming to the RDF/XML syntax which then can be parsed by the OWL API RDF/XML syntax parser. A single expression, e.g.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:owl="http://www.w3.org/2002/07/owl#"> <owl:Class rdf:about="http://swat.cse.lehigh.edu/onto/univ-bench.owl#Person"/> </rdf:RDF>
then we will get Declaration(Class("http://swat.cse.lehigh.edu/onto/univ-bench.owl#Person"))
A Statement containing an expression in RDFXML syntax
The set of axioms corresponding to the expression.
Trait to support the parsing of input OWL files in RDFXML syntax. This trait mainly defines how to make axioms from input RDFXML syntax expressions.