Package org.semanticweb.owl.model

Examples of org.semanticweb.owl.model.OWLDataPropertyExpression


        else {
            if( targetValue == null ) {
                throw new OWLRDFXMLParserMalformedNodeException(
                        "missing owl:targetIndividual or owl:targetValue triple");
            }
            final OWLDataPropertyExpression assertionProperty = translateDataProperty(assertionPropertyURI);
            ax = getDataFactory().getOWLNegativeDataPropertyAssertionAxiom(sourceIndividual,
                    assertionProperty, targetValue);
        }
        addAxiom(ax);
        getConsumer().addReifiedAxiom(subject, ax);
View Full Code Here

TOP

Related Classes of org.semanticweb.owl.model.OWLDataPropertyExpression

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.