Examples of OWLDataPropertyExpression


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

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataAllValuesFrom() throws ParseException {
        OWLDataPropertyExpression prop = null;
        OWLDataRange dataRange = null;
        jj_consume_token(DATAALLVALUESFROM);
        jj_consume_token(OPENPAR);
        prop = DataPropertyExpression();
        dataRange = DataRange();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataSomeValuesFrom() throws ParseException {
        OWLDataPropertyExpression prop = null;
        OWLDataRange dataRange = null;
        jj_consume_token(DATASOMEVALUESFROM);
        jj_consume_token(OPENPAR);
        prop = DataPropertyExpression();
        dataRange = DataRange();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataHasValue() throws ParseException {
        OWLDataPropertyExpression prop = null;
        OWLLiteral literal = null;
        jj_consume_token(DATAHASVALUE);
        jj_consume_token(OPENPAR);
        prop = DataPropertyExpression();
        literal = Literal();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataMinCardinality() throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAMINCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

    }

    final public OWLClassExpression DataExactCardinality()
            throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAEXACTCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        throw new Error("Missing return statement in function");
    }

    final public OWLClassExpression DataMaxCardinality() throws ParseException {
        int cardinality = 0;
        OWLDataPropertyExpression prop = null;
        OWLDataRange rng = null;
        jj_consume_token(DATAMAXCARDINALITY);
        jj_consume_token(OPENPAR);
        cardinality = Cardinality();
        prop = DataPropertyExpression();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        throw new Error("Missing return statement in function");
    }

    final public OWLDataPropertyExpression DataPropertyExpression()
            throws ParseException {
        OWLDataPropertyExpression prop;
        prop = DataPropertyIRI();
        {
            if ("" != null) {
                return prop;
            }
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        }
        throw new Error("Missing return statement in function");
    }

    final public OWLPropertyAxiom SubDataPropertyOf() throws ParseException {
        OWLDataPropertyExpression subProperty;
        OWLDataPropertyExpression superProperty;
        Set<OWLAnnotation> axiomAnnos;
        jj_consume_token(SUBDATAPROPERTYOF);
        jj_consume_token(OPENPAR);
        axiomAnnos = AxiomAnnotationSet();
        subProperty = DataPropertyExpression();
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLDataPropertyExpression

        throw new Error("Missing return statement in function");
    }

    final public Set<OWLDataPropertyExpression> DataPropertySet()
            throws ParseException {
        OWLDataPropertyExpression prop;
        Set<OWLDataPropertyExpression> props = new HashSet<OWLDataPropertyExpression>();
        prop = DataPropertyExpression();
        props.add(prop);
        prop = DataPropertyExpression();
        props.add(prop);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.