Package org.semanticweb.owlapi.model

Examples of org.semanticweb.owlapi.model.IRI


        jj_consume_token(CLOSEPAR);
        prefixMap.put(prefixName, iri.toString());
    }

    final public IRI IRI() throws ParseException {
        IRI iri;
        switch (jj_ntk == -1 ? jj_ntk_f() : jj_ntk) {
            case FULLIRI: {
                iri = FullIRI();
                break;
            }
View Full Code Here


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

    final public OWLClass ClassIRI() throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLClass(iri);
            }
View Full Code Here

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

    final public OWLDataProperty DataPropertyIRI() throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLDataProperty(iri);
            }
View Full Code Here

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

    final public OWLAnnotationProperty AnnotationPropertyIRI()
            throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLAnnotationProperty(iri);
            }
View Full Code Here

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

    final public OWLDatatype DatatypeIRI() throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLDatatype(iri);
            }
View Full Code Here

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

    final public OWLFacetRestriction DataRangeFacetRestriction()
            throws ParseException {
        IRI iri;
        OWLLiteral con;
        iri = IRI();
        con = Literal();
        OWLFacet v = OWLFacet.getFacetByShortName(iri.getFragment());
        {
            if ("" != null) {
                return dataFactory.getOWLFacetRestriction(v, con);
            }
        }
View Full Code Here

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

    final public OWLNamedIndividual IndividualIRI() throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLNamedIndividual(iri);
            }
View Full Code Here

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

    final public OWLObjectProperty ObjectPropertyIRI() throws ParseException {
        IRI iri;
        iri = IRI();
        {
            if ("" != null) {
                return dataFactory.getOWLObjectProperty(iri);
            }
View Full Code Here

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

    final public OWLImportsDeclaration ImportsDeclaration()
            throws ParseException {
        IRI iri;
        jj_consume_token(IMPORT);
        jj_consume_token(OPENPAR);
        iri = IRI();
        jj_consume_token(CLOSEPAR);
        OWLImportsDeclaration importsDeclaration = dataFactory
View Full Code Here

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

    final public OWLAnnotationPropertyDomainAxiom AnnotationPropertyDomain()
            throws ParseException {
        IRI domain;
        OWLAnnotationProperty prop;
        Set<OWLAnnotation> axiomAnnos;
        jj_consume_token(ANNOTATIONPROPERTYDOMAIN);
        jj_consume_token(OPENPAR);
        axiomAnnos = AxiomAnnotationSet();
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.model.IRI

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.