net.sansa_stack.owl.common.parsing
Builds a snippet conforming to the OWL functional syntax which then can be parsed by the OWLAPI functional syntax parser.
Builds a snippet conforming to the OWL functional syntax which then can be parsed by the OWLAPI functional syntax parser. A single expression, e.g.
Declaration(Class(bar:Cls2))
has thus to be wrapped into an ontology declaration as follows
Ontology( <http://the.ontology.uri#> Declaration(Class(bar:Cls2)) )
A String containing an expression in OWL functional syntax, e.g. Declaration(Class(bar:Cls2))
The parsed axiom or null in case something went wrong during parsing
Trait to support the parsing of input OWL files in functional syntax. This trait mainly defines how to make axioms from input functional syntax expressions.