All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.semanticweb.owlapi.functional.parser.OWLFunctionalSyntaxParser Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/* OWLFunctionalSyntaxParser.java */
/* Generated By:JavaCC: Do not edit this line. OWLFunctionalSyntaxParser.java */
package org.semanticweb.owlapi.functional.parser;

import org.semanticweb.owlapi.model.*;
import org.semanticweb.owlapi.vocab.*;
import java.net.*;
import java.util.*;
import org.semanticweb.owlapi.util.*;
import org.semanticweb.owlapi.formats.FunctionalSyntaxDocumentFormat;
import java.io.IOException;
import org.semanticweb.owlapi.io.OWLParserException;

@SuppressWarnings("all")
public class OWLFunctionalSyntaxParser implements OWLFunctionalSyntaxParserConstants {

    private OWLOntologyManager man;

    private OWLOntologyLoaderConfiguration configuration;

    private OWLOntology ontology;

    private OWLDataFactory df;

    private Map string2IRI;

    private Map prefixMap;

    private IRI ontologyIRI;

    private boolean ignoreAnnotationsAndDeclarations = false;

    private Set currentAnnotations;

    protected RemappingIndividualProvider anonProvider;

    public void setUp(OWLOntology ontology, OWLOntologyLoaderConfiguration configuration) {
        this.man = ontology.getOWLOntologyManager();
        this.ontology = ontology;
        this.configuration = configuration;
        this.df = man.getOWLDataFactory();
        anonProvider=new RemappingIndividualProvider(df);
        this.currentAnnotations = new HashSet();
        if(prefixMap == null) {
            prefixMap = new HashMap();
            prefixMap.put("owl:", Namespaces.OWL.toString());
            prefixMap.put("rdf:", Namespaces.RDF.toString());
            prefixMap.put("rdfs:", Namespaces.RDFS.toString());
            prefixMap.put("xml:", Namespaces.XML.toString());
            prefixMap.put("xsd:", Namespaces.XSD.toString());
        }
        string2IRI = new HashMap();
    }

    public IRI getIRI(String s) {
        IRI iri = string2IRI.get(s);
        if(iri == null) {
            if(s.charAt(0) == '<') {
                String iriString = s.substring(1, s.length() - 1);
                iri = IRI.create(iriString);
                if (iri.isAbsolute()) {
                  return iri;
                }
                // relative IRIs must be made absolute with the ontology default prefix, if one exists
                String prefix = prefixMap.get(":");
                if (prefix == null) {
                  prefix = "";
                }
                return IRI.create(prefix + iriString);
            }
            else {
                int colonIndex = s.indexOf(':');
                String prefixName = s.substring(0, colonIndex + 1);
                String prefix = prefixMap.get(prefixName);
                if(prefix == null) {
                    throw new OWLRuntimeException("Undefined prefix name: " + prefixName);
                }
                String fullIRIString = prefix + s.substring(colonIndex + 1);
                iri = IRI.create(fullIRIString);
            }
            string2IRI.put(s, iri);
        }
        return iri;
    }

    public void setIgnoreAnnotationsAndDeclarations(boolean b) {
        ignoreAnnotationsAndDeclarations = b;
    }

    protected void applyChange(OWLOntologyChange chg) {
        man.applyChange(chg);
    }

    protected void addAxiom(OWLAxiom ax) {
        if (!(ax instanceof OWLAnnotationAxiom) || configuration.isLoadAnnotationAxioms()) {
            applyChange(new AddAxiom(ontology, ax));
        }
    }

    public void setPrefixes(PrefixManager nsm) {
        if(prefixMap == null) {
            prefixMap = new HashMap();
        }
        prefixMap.putAll(nsm.getPrefixName2PrefixMap());
    }

  final public FunctionalSyntaxDocumentFormat parse() throws ParseException, OWLParserException, UnloadableImportException {
    label_1:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case PREFIX:{
        ;
        break;
        }
      default:
        jj_la1[0] = jj_gen;
        break label_1;
      }
      Prefix();
    }
    Ontology();
    jj_consume_token(0);
FunctionalSyntaxDocumentFormat format = new FunctionalSyntaxDocumentFormat();
        for(String pn : prefixMap.keySet()) {
            format.setPrefix(pn, prefixMap.get(pn));
        }
        {if ("" != null) return format;}
    throw new Error("Missing return statement in function");
}

  final public void Ontology() throws ParseException, OWLParserException, UnloadableImportException {OWLAnnotation anno;
    OWLAxiom ax;
    OWLImportsDeclaration decl;
    int count = 0;
    IRI versionIRI = null;
    jj_consume_token(ONTOLOGY);
    jj_consume_token(OPENPAR);
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      ontologyIRI = IRI();
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:{
        versionIRI = IRI();
        break;
        }
      default:
        jj_la1[1] = jj_gen;
        ;
      }
      break;
      }
    default:
      jj_la1[2] = jj_gen;
      ;
    }
OWLOntologyID id = new OWLOntologyID(ontologyIRI, versionIRI);
                applyChange(new SetOntologyID(ontology, id));
    label_2:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case IMPORT:
      case ANNOTATION:{
        ;
        break;
        }
      default:
        jj_la1[3] = jj_gen;
        break label_2;
      }
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case IMPORT:{
        decl = ImportsDeclaration();
applyChange(new AddImport(ontology, decl));
        man.makeLoadImportRequest(decl, configuration);
        break;
        }
      case ANNOTATION:{
        anno = Annotation();
applyChange(new AddOntologyAnnotation(ontology, anno));
        currentAnnotations.clear();
        break;
        }
      default:
        jj_la1[4] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
    }
    label_3:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case SUBCLASSOF:
      case EQUIVALENTCLASSES:
      case DISJOINTCLASSES:
      case DISJOINTUNION:
      case ANNOTATIONASSERTION:
      case SUBANNOTATIONPROPERTYOF:
      case ANNOTATIONPROPERTYDOMAIN:
      case ANNOTATIONPROPERTYRANGE:
      case HASKEY:
      case DECLARATION:
      case INVERSEOBJECTPROPERTIES:
      case DATATYPEDEFINITION:
      case SUBOBJECTPROPERTYOF:
      case EQUIVALENTOBJECTPROPERTIES:
      case DISJOINTOBJECTPROPERTIES:
      case OBJECTPROPERTYDOMAIN:
      case OBJECTPROPERTYRANGE:
      case FUNCTIONALOBJECTPROPERTY:
      case INVERSEFUNCTIONALOBJECTPROPERTY:
      case REFLEXIVEOBJECTPROPERTY:
      case IRREFLEXIVEOBJECTPROPERTY:
      case SYMMETRICOBJECTPROPERTY:
      case ASYMMETRICOBJECTPROPERTY:
      case TRANSITIVEOBJECTPROPERTY:
      case SUBDATAPROPERTYOF:
      case EQUIVALENTDATAPROPERTIES:
      case DISJOINTDATAPROPERTIES:
      case DATAPROPERTYDOMAIN:
      case DATAPROPERTYRANGE:
      case FUNCTIONALDATAPROPERTY:
      case SAMEINDIVIDUAL:
      case DIFFERENTINDIVIDUALS:
      case CLASSASSERTION:
      case OBJECTPROPERTYASSERTION:
      case NEGATIVEOBJECTPROPERTYASSERTION:
      case DATAPROPERTYASSERTION:
      case NEGATIVEDATAPROPERTYASSERTION:
      case DLSAFERULE:{
        ;
        break;
        }
      default:
        jj_la1[5] = jj_gen;
        break label_3;
      }
      ax = Axiom();
addAxiom(ax);
        currentAnnotations.clear();
    }
    jj_consume_token(CLOSEPAR);
}

  final public void Prefix() throws ParseException {String prefixName="";
    IRI iri;
    jj_consume_token(PREFIX);
    jj_consume_token(OPENPAR);
    prefixName = PrefixName();
    jj_consume_token(EQUALS);
    iri = FullIRI();
    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;
      }
    case PNAME_LN:{
      iri = AbbreviatedIRI();
      break;
      }
    default:
      jj_la1[6] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return iri;}
    throw new Error("Missing return statement in function");
}

  final public IRI FullIRI() throws ParseException {Token t;
    t = jj_consume_token(FULLIRI);
{if ("" != null) return getIRI(t.image);}
    throw new Error("Missing return statement in function");
}

  final public IRI AbbreviatedIRI() throws ParseException {Token t;
    t = jj_consume_token(PNAME_LN);
{if ("" != null) return getIRI(t.image);}
    throw new Error("Missing return statement in function");
}

  final public String PrefixName() throws ParseException {Token t;
    t = jj_consume_token(PNAME_NS);
{if ("" != null) return t.image;}
    throw new Error("Missing return statement in function");
}

/////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Class Descriptions
//
/////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLClassExpression ClassExpression() throws ParseException {OWLClassExpression desc;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      desc = ClassIRI();
      break;
      }
    case OBJECTUNIONOF:{
      desc = ObjectUnionOf();
      break;
      }
    case OBJECTINTERSECTIONOF:{
      desc = ObjectIntersectionOf();
      break;
      }
    case OBJECTCOMPLEMENTOF:{
      desc = ObjectComplementOf();
      break;
      }
    case OBJECTONEOF:{
      desc = ObjectOneOf();
      break;
      }
    case OBJECTSOMEVALUESFROM:{
      desc = ObjectSomeValuesFrom();
      break;
      }
    case OBJECTALLVALUESFROM:{
      desc = ObjectAllValuesFrom();
      break;
      }
    case OBJECTHASVALUE:{
      desc = ObjectHasValue();
      break;
      }
    case OBJECTHASSELF:{
      desc = ObjectSelf();
      break;
      }
    case OBJECTMINCARDINALITY:{
      desc = ObjectMinCardinality();
      break;
      }
    case OBJECTEXACTCARDINALITY:{
      desc = ObjectExactCardinality();
      break;
      }
    case OBJECTMAXCARDINALITY:{
      desc = ObjectMaxCardinality();
      break;
      }
    case DATASOMEVALUESFROM:{
      desc = DataSomeValuesFrom();
      break;
      }
    case DATAALLVALUESFROM:{
      desc = DataAllValuesFrom();
      break;
      }
    case DATAHASVALUE:{
      desc = DataHasValue();
      break;
      }
    case DATAMINCARDINALITY:{
      desc = DataMinCardinality();
      break;
      }
    case DATAEXACTCARDINALITY:{
      desc = DataExactCardinality();
      break;
      }
    case DATAMAXCARDINALITY:{
      desc = DataMaxCardinality();
      break;
      }
    default:
      jj_la1[7] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return desc;}
    throw new Error("Missing return statement in function");
}

  final public OWLClass ClassIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLClass(iri);}
    throw new Error("Missing return statement in function");
}

  final public Set ClassExpressionSet() throws ParseException {Set classExpressions = new HashSet();
    OWLClassExpression desc;
    desc = ClassExpression();
classExpressions.add(desc);
    desc = ClassExpression();
classExpressions.add(desc);
    label_4:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case OBJECTONEOF:
      case OBJECTUNIONOF:
      case OBJECTHASVALUE:
      case OBJECTINTERSECTIONOF:
      case OBJECTCOMPLEMENTOF:
      case OBJECTALLVALUESFROM:
      case OBJECTSOMEVALUESFROM:
      case OBJECTHASSELF:
      case OBJECTMINCARDINALITY:
      case OBJECTMAXCARDINALITY:
      case OBJECTEXACTCARDINALITY:
      case DATAALLVALUESFROM:
      case DATASOMEVALUESFROM:
      case DATAHASVALUE:
      case DATAMINCARDINALITY:
      case DATAMAXCARDINALITY:
      case DATAEXACTCARDINALITY:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[8] = jj_gen;
        break label_4;
      }
      desc = ClassExpression();
classExpressions.add(desc);
    }
{if ("" != null) return classExpressions;}
    throw new Error("Missing return statement in function");
}

  final public Set IndividualMinOneSet() throws ParseException {Set individuals = new HashSet();
    OWLIndividual ind;
    ind = Individual();
individuals.add(ind);
    label_5:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:
      case NODEID:{
        ;
        break;
        }
      default:
        jj_la1[9] = jj_gen;
        break label_5;
      }
      ind = Individual();
individuals.add(ind);
    }
{if ("" != null) return individuals;}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectUnionOf() throws ParseException {Set classExpressions;
    jj_consume_token(OBJECTUNIONOF);
    jj_consume_token(OPENPAR);
    classExpressions = ClassExpressionSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectUnionOf(classExpressions);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectIntersectionOf() throws ParseException {Set classExpressions;
    jj_consume_token(OBJECTINTERSECTIONOF);
    jj_consume_token(OPENPAR);
    classExpressions = ClassExpressionSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectIntersectionOf(classExpressions);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectComplementOf() throws ParseException {OWLClassExpression operand;
    jj_consume_token(OBJECTCOMPLEMENTOF);
    jj_consume_token(OPENPAR);
    operand = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectComplementOf(operand);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectOneOf() throws ParseException {Set individuals;
    jj_consume_token(OBJECTONEOF);
    jj_consume_token(OPENPAR);
    individuals = IndividualMinOneSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectOneOf(individuals);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectAllValuesFrom() throws ParseException {OWLObjectPropertyExpression prop;
    OWLClassExpression filler;
    jj_consume_token(OBJECTALLVALUESFROM);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
    filler = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectAllValuesFrom(prop, filler);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectSomeValuesFrom() throws ParseException {OWLObjectPropertyExpression prop;
    OWLClassExpression filler;
    jj_consume_token(OBJECTSOMEVALUESFROM);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
    filler = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectSomeValuesFrom(prop, filler);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectHasValue() throws ParseException {OWLObjectPropertyExpression prop;
    OWLIndividual ind;
    jj_consume_token(OBJECTHASVALUE);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
    ind = Individual();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectHasValue(prop, ind);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectSelf() throws ParseException {OWLObjectPropertyExpression prop;
    jj_consume_token(OBJECTHASSELF);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectHasSelf(prop);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectMinCardinality() throws ParseException {int cardinality = 0;
    OWLObjectPropertyExpression prop = null;
    OWLClassExpression filler = null;
    jj_consume_token(OBJECTMINCARDINALITY);
    jj_consume_token(OPENPAR);
    cardinality = Cardinality();
    prop = ObjectPropertyExpression();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case OBJECTONEOF:
    case OBJECTUNIONOF:
    case OBJECTHASVALUE:
    case OBJECTINTERSECTIONOF:
    case OBJECTCOMPLEMENTOF:
    case OBJECTALLVALUESFROM:
    case OBJECTSOMEVALUESFROM:
    case OBJECTHASSELF:
    case OBJECTMINCARDINALITY:
    case OBJECTMAXCARDINALITY:
    case OBJECTEXACTCARDINALITY:
    case DATAALLVALUESFROM:
    case DATASOMEVALUESFROM:
    case DATAHASVALUE:
    case DATAMINCARDINALITY:
    case DATAMAXCARDINALITY:
    case DATAEXACTCARDINALITY:
    case FULLIRI:
    case PNAME_LN:{
      filler = ClassExpression();
      break;
      }
    default:
      jj_la1[10] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(filler == null) {
            {if ("" != null) return df.getOWLObjectMinCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLObjectMinCardinality(cardinality, prop, filler);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectExactCardinality() throws ParseException {int cardinality = 0;
    OWLObjectPropertyExpression prop = null;
    OWLClassExpression filler = null;
    jj_consume_token(OBJECTEXACTCARDINALITY);
    jj_consume_token(OPENPAR);
    cardinality = Cardinality();
    prop = ObjectPropertyExpression();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case OBJECTONEOF:
    case OBJECTUNIONOF:
    case OBJECTHASVALUE:
    case OBJECTINTERSECTIONOF:
    case OBJECTCOMPLEMENTOF:
    case OBJECTALLVALUESFROM:
    case OBJECTSOMEVALUESFROM:
    case OBJECTHASSELF:
    case OBJECTMINCARDINALITY:
    case OBJECTMAXCARDINALITY:
    case OBJECTEXACTCARDINALITY:
    case DATAALLVALUESFROM:
    case DATASOMEVALUESFROM:
    case DATAHASVALUE:
    case DATAMINCARDINALITY:
    case DATAMAXCARDINALITY:
    case DATAEXACTCARDINALITY:
    case FULLIRI:
    case PNAME_LN:{
      filler = ClassExpression();
      break;
      }
    default:
      jj_la1[11] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(filler == null) {
            {if ("" != null) return df.getOWLObjectExactCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLObjectExactCardinality(cardinality, prop, filler);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassExpression ObjectMaxCardinality() throws ParseException {int cardinality = 0;
    OWLObjectPropertyExpression prop = null;
    OWLClassExpression filler = null;
    jj_consume_token(OBJECTMAXCARDINALITY);
    jj_consume_token(OPENPAR);
    cardinality = Cardinality();
    prop = ObjectPropertyExpression();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case OBJECTONEOF:
    case OBJECTUNIONOF:
    case OBJECTHASVALUE:
    case OBJECTINTERSECTIONOF:
    case OBJECTCOMPLEMENTOF:
    case OBJECTALLVALUESFROM:
    case OBJECTSOMEVALUESFROM:
    case OBJECTHASSELF:
    case OBJECTMINCARDINALITY:
    case OBJECTMAXCARDINALITY:
    case OBJECTEXACTCARDINALITY:
    case DATAALLVALUESFROM:
    case DATASOMEVALUESFROM:
    case DATAHASVALUE:
    case DATAMINCARDINALITY:
    case DATAMAXCARDINALITY:
    case DATAEXACTCARDINALITY:
    case FULLIRI:
    case PNAME_LN:{
      filler = ClassExpression();
      break;
      }
    default:
      jj_la1[12] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(filler == null) {
            {if ("" != null) return df.getOWLObjectMaxCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLObjectMaxCardinality(cardinality, prop, filler);}
    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();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataAllValuesFrom(prop, dataRange);}
    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();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataSomeValuesFrom(prop, dataRange);}
    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();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataHasValue(prop, literal);}
    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();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case DATAONEOF:
    case DATAUNIONOF:
    case DATAINTERSECTIONOF:
    case DATACOMPLEMENTOF:
    case DATATYPERESTRICTION:
    case FULLIRI:
    case PNAME_LN:{
      rng = DataRange();
      break;
      }
    default:
      jj_la1[13] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(rng == null) {
            {if ("" != null) return df.getOWLDataMinCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLDataMinCardinality(cardinality, prop, rng);}
    throw new Error("Missing return statement in function");
}

  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();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case DATAONEOF:
    case DATAUNIONOF:
    case DATAINTERSECTIONOF:
    case DATACOMPLEMENTOF:
    case DATATYPERESTRICTION:
    case FULLIRI:
    case PNAME_LN:{
      rng = DataRange();
      break;
      }
    default:
      jj_la1[14] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(rng == null) {
            {if ("" != null) return df.getOWLDataExactCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLDataExactCardinality(cardinality, prop, rng);}
    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();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case DATAONEOF:
    case DATAUNIONOF:
    case DATAINTERSECTIONOF:
    case DATACOMPLEMENTOF:
    case DATATYPERESTRICTION:
    case FULLIRI:
    case PNAME_LN:{
      rng = DataRange();
      break;
      }
    default:
      jj_la1[15] = jj_gen;
      ;
    }
    jj_consume_token(CLOSEPAR);
if(rng == null) {
            {if ("" != null) return df.getOWLDataMaxCardinality(cardinality, prop);}
        }
        {if ("" != null) return df.getOWLDataMaxCardinality(cardinality, prop, rng);}
    throw new Error("Missing return statement in function");
}

  final public OWLClass Class() throws ParseException {OWLClass cls;
    jj_consume_token(CLASS);
    jj_consume_token(OPENPAR);
    cls = ClassIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return cls;}
    throw new Error("Missing return statement in function");
}

  final public OWLObjectPropertyExpression ObjectPropertyExpression() throws ParseException {OWLObjectPropertyExpression prop;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case OBJECTINVERSEOF:{
      prop = InverseObjectProperty();
      break;
      }
    case FULLIRI:
    case PNAME_LN:{
      prop = ObjectPropertyIRI();
      break;
      }
    default:
      jj_la1[16] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return prop;}
    throw new Error("Missing return statement in function");
}

  final public OWLObjectPropertyExpression InverseObjectProperty() throws ParseException {OWLObjectProperty prop;
    jj_consume_token(OBJECTINVERSEOF);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectInverseOf(prop);}
    throw new Error("Missing return statement in function");
}

  final public OWLObjectProperty ObjectProperty() throws ParseException {OWLObjectProperty prop;
    jj_consume_token(OBJECTPROP);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return prop;}
    throw new Error("Missing return statement in function");
}

  final public OWLDataPropertyExpression DataPropertyExpression() throws ParseException {OWLDataPropertyExpression prop;
    prop = DataPropertyIRI();
{if ("" != null) return prop;}
    throw new Error("Missing return statement in function");
}

  final public OWLDataProperty DataPropertyIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLDataProperty(iri);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataProperty DataProperty() throws ParseException {OWLDataProperty prop;
    jj_consume_token(DATAPROP);
    jj_consume_token(OPENPAR);
    prop = DataPropertyIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return prop;}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationProperty AnnotationProperty() throws ParseException {OWLAnnotationProperty prop;
    jj_consume_token(ANNOTATIONPROPERTY);
    jj_consume_token(OPENPAR);
    prop = AnnotationPropertyIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return prop;}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationProperty AnnotationPropertyIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLAnnotationProperty(iri);}
    throw new Error("Missing return statement in function");
}

  final public OWLNamedIndividual NamedIndividual() throws ParseException {OWLNamedIndividual ind;
    jj_consume_token(NAMEDINDIVIDUAL);
    jj_consume_token(OPENPAR);
    ind = IndividualIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return ind;}
    throw new Error("Missing return statement in function");
}

  final public OWLAnonymousIndividual AnonymousIndividual() throws ParseException {Token t;
    t = jj_consume_token(NODEID);
{if ("" != null) return anonProvider.getOWLAnonymousIndividual(t.image.substring(2, t.image.length()));}
    throw new Error("Missing return statement in function");
}

  final public OWLDatatype Datatype() throws ParseException {OWLDatatype dt;
    jj_consume_token(DATATYPE);
    jj_consume_token(OPENPAR);
    dt = DatatypeIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return dt;}
    throw new Error("Missing return statement in function");
}

  final public OWLDatatype DatatypeIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLDatatype(iri);}
    throw new Error("Missing return statement in function");
}

  final public int Cardinality() throws ParseException {int card = 0;
    card = Integer();
{if ("" != null) return card;}
    throw new Error("Missing return statement in function");
}

  final public int Integer() throws ParseException {Token t;
    t = jj_consume_token(INT);
{if ("" != null) return Integer.parseInt(t.image);}
    throw new Error("Missing return statement in function");
}

  final public OWLDatatypeDefinitionAxiom DatatypeDefinitionAxiom() throws ParseException {OWLDatatype datatype;
    OWLDataRange dr;
    Set axAnnos;
    jj_consume_token(DATATYPEDEFINITION);
    jj_consume_token(OPENPAR);
    axAnnos = AxiomAnnotationSet();
    datatype = DatatypeIRI();
    dr = DataRange();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDatatypeDefinitionAxiom(datatype, dr, axAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataRange() throws ParseException {OWLDataRange rng;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      rng = DatatypeIRI();
      break;
      }
    case DATAONEOF:{
      rng = DataOneOf();
      break;
      }
    case DATACOMPLEMENTOF:{
      rng = DataComplementOf();
      break;
      }
    case DATATYPERESTRICTION:{
      rng = DataRangeRestriction();
      break;
      }
    case DATAINTERSECTIONOF:{
      rng = DataIntersectionOf();
      break;
      }
    case DATAUNIONOF:{
      rng = DataUnionOf();
      break;
      }
    default:
      jj_la1[17] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return rng;}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataComplementOf() throws ParseException {OWLDataRange rng;
    jj_consume_token(DATACOMPLEMENTOF);
    jj_consume_token(OPENPAR);
    rng = DataRange();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataComplementOf(rng);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataOneOf() throws ParseException {Set values = new HashSet();
    OWLLiteral con = null;
    OWLDataRange rng = null;
    jj_consume_token(DATAONEOF);
    jj_consume_token(OPENPAR);
    label_6:
    while (true) {
      con = Literal();
values.add(con);
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case STRINGLITERAL:{
        ;
        break;
        }
      default:
        jj_la1[18] = jj_gen;
        break label_6;
      }
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataOneOf(values);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataUnionOf() throws ParseException {OWLDataRange dataRange;
    Set ranges = new HashSet();
    jj_consume_token(DATAUNIONOF);
    jj_consume_token(OPENPAR);
    label_7:
    while (true) {
      dataRange = DataRange();
ranges.add(dataRange);
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case DATAONEOF:
      case DATAUNIONOF:
      case DATAINTERSECTIONOF:
      case DATACOMPLEMENTOF:
      case DATATYPERESTRICTION:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[19] = jj_gen;
        break label_7;
      }
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataUnionOf(ranges);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataIntersectionOf() throws ParseException {OWLDataRange dataRange;
    Set ranges = new HashSet();
    jj_consume_token(DATAINTERSECTIONOF);
    jj_consume_token(OPENPAR);
    label_8:
    while (true) {
      dataRange = DataRange();
ranges.add(dataRange);
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case DATAONEOF:
      case DATAUNIONOF:
      case DATAINTERSECTIONOF:
      case DATACOMPLEMENTOF:
      case DATATYPERESTRICTION:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[20] = jj_gen;
        break label_8;
      }
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataIntersectionOf(ranges);}
    throw new Error("Missing return statement in function");
}

  final public OWLDataRange DataRangeRestriction() throws ParseException {OWLFacet v;
    OWLDatatype rng;
    OWLFacetRestriction fr;
    Set frs = new HashSet();
    jj_consume_token(DATATYPERESTRICTION);
    jj_consume_token(OPENPAR);
    rng = DatatypeIRI();
    label_9:
    while (true) {
      fr = DataRangeFacetRestriction();
frs.add(fr);
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[21] = jj_gen;
        break label_9;
      }
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDatatypeRestriction(rng, frs);}
    throw new Error("Missing return statement in function");
}

  final public OWLFacetRestriction DataRangeFacetRestriction() throws ParseException {IRI iri;
    OWLLiteral con;
    iri = IRI();
    con = Literal();
{if ("" != null) return df.getOWLFacetRestriction(OWLFacet.getFacetByShortName(iri.getFragment()), con);}
    throw new Error("Missing return statement in function");
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Axioms
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLAxiom Axiom() throws ParseException {OWLAxiom ax;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case SUBCLASSOF:
    case EQUIVALENTCLASSES:
    case DISJOINTCLASSES:
    case DISJOINTUNION:{
      ax = ClassAxiom();
      break;
      }
    case INVERSEOBJECTPROPERTIES:
    case SUBOBJECTPROPERTYOF:
    case EQUIVALENTOBJECTPROPERTIES:
    case DISJOINTOBJECTPROPERTIES:
    case OBJECTPROPERTYDOMAIN:
    case OBJECTPROPERTYRANGE:
    case FUNCTIONALOBJECTPROPERTY:
    case INVERSEFUNCTIONALOBJECTPROPERTY:
    case REFLEXIVEOBJECTPROPERTY:
    case IRREFLEXIVEOBJECTPROPERTY:
    case SYMMETRICOBJECTPROPERTY:
    case ASYMMETRICOBJECTPROPERTY:
    case TRANSITIVEOBJECTPROPERTY:{
      ax = ObjectPropertyAxiom();
      break;
      }
    case SUBDATAPROPERTYOF:
    case EQUIVALENTDATAPROPERTIES:
    case DISJOINTDATAPROPERTIES:
    case DATAPROPERTYDOMAIN:
    case DATAPROPERTYRANGE:
    case FUNCTIONALDATAPROPERTY:{
      ax = DataPropertyAxiom();
      break;
      }
    case SAMEINDIVIDUAL:
    case DIFFERENTINDIVIDUALS:
    case CLASSASSERTION:
    case OBJECTPROPERTYASSERTION:
    case NEGATIVEOBJECTPROPERTYASSERTION:
    case DATAPROPERTYASSERTION:
    case NEGATIVEDATAPROPERTYASSERTION:{
      ax = IndividualAxiom();
      break;
      }
    case DECLARATION:{
      ax = Declaration();
      break;
      }
    case HASKEY:{
      ax = HasKey();
      break;
      }
    case DATATYPEDEFINITION:{
      ax = DatatypeDefinitionAxiom();
      break;
      }
    case ANNOTATIONASSERTION:
    case SUBANNOTATIONPROPERTYOF:
    case ANNOTATIONPROPERTYDOMAIN:
    case ANNOTATIONPROPERTYRANGE:{
      ax = AnnotationAxiom();
      break;
      }
    case DLSAFERULE:{
      ax = DLSafeRule();
      break;
      }
    default:
      jj_la1[22] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ax;}
    throw new Error("Missing return statement in function");
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Class Axioms
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLClassAxiom ClassAxiom() throws ParseException {OWLClassAxiom ax;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case SUBCLASSOF:{
      ax = SubClassOf();
      break;
      }
    case EQUIVALENTCLASSES:{
      ax = EquivalentClasses();
      break;
      }
    case DISJOINTCLASSES:{
      ax = DisjointClasses();
      break;
      }
    case DISJOINTUNION:{
      ax = DisjointUnion();
      break;
      }
    default:
      jj_la1[23] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ax;}
    throw new Error("Missing return statement in function");
}

  final public OWLClassAxiom SubClassOf() throws ParseException {OWLClassExpression subClass;
    OWLClassExpression superClass;
    Set axiomAnnos;
    jj_consume_token(SUBCLASSOF);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    subClass = ClassExpression();
    superClass = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLSubClassOfAxiom(subClass, superClass, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassAxiom EquivalentClasses() throws ParseException {Set classExpressions;
    Set axiomAnnos;
    jj_consume_token(EQUIVALENTCLASSES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    classExpressions = ClassExpressionSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLEquivalentClassesAxiom(classExpressions, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassAxiom DisjointClasses() throws ParseException {Set classExpressions;
    Set axiomAnnos;
    jj_consume_token(DISJOINTCLASSES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    classExpressions = ClassExpressionSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDisjointClassesAxiom(classExpressions, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLClassAxiom DisjointUnion() throws ParseException {OWLClass cls;
    Set classExpressions;
    Set axiomAnnos;
    jj_consume_token(DISJOINTUNION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    cls = ClassIRI();
    classExpressions = ClassExpressionSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDisjointUnionAxiom(cls, classExpressions, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Object Property Axioms
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLPropertyAxiom ObjectPropertyAxiom() throws ParseException {OWLPropertyAxiom ax;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case SUBOBJECTPROPERTYOF:{
      ax = SubObjectPropertyOf();
      break;
      }
    case EQUIVALENTOBJECTPROPERTIES:{
      ax = EquivalentObjectProperties();
      break;
      }
    case DISJOINTOBJECTPROPERTIES:{
      ax = DisjointObjectProperties();
      break;
      }
    case OBJECTPROPERTYRANGE:{
      ax = ObjectPropertyRange();
      break;
      }
    case OBJECTPROPERTYDOMAIN:{
      ax = ObjectPropertyDomain();
      break;
      }
    case FUNCTIONALOBJECTPROPERTY:{
      ax = FunctionalObjectProperty();
      break;
      }
    case INVERSEFUNCTIONALOBJECTPROPERTY:{
      ax = InverseFunctionalObjectProperty();
      break;
      }
    case SYMMETRICOBJECTPROPERTY:{
      ax = SymmetricObjectProperty();
      break;
      }
    case ASYMMETRICOBJECTPROPERTY:{
      ax = AsymmetricObjectProperty();
      break;
      }
    case REFLEXIVEOBJECTPROPERTY:{
      ax = ReflexiveObjectProperty();
      break;
      }
    case IRREFLEXIVEOBJECTPROPERTY:{
      ax = IrreflexiveObjectProperty();
      break;
      }
    case TRANSITIVEOBJECTPROPERTY:{
      ax = TransitiveObjectProperty();
      break;
      }
    case INVERSEOBJECTPROPERTIES:{
      ax = InverseObjectProperties();
      break;
      }
    default:
      jj_la1[24] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ax;}
    throw new Error("Missing return statement in function");
}

  final public List SubObjectPropertyChain() throws ParseException {OWLObjectPropertyExpression prop;
    List props = new ArrayList();
    jj_consume_token(SUBOBJECTPROPERTYCHAIN);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
props.add(prop);
    label_10:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case OBJECTINVERSEOF:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[25] = jj_gen;
        break label_10;
      }
      prop = ObjectPropertyExpression();
props.add(prop);
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return props;}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom SubObjectPropertyOf() throws ParseException {OWLObjectPropertyExpression subProperty = null;
    List chain = null;
    OWLObjectPropertyExpression superProperty = null;
    Set axiomAnnos;
    jj_consume_token(SUBOBJECTPROPERTYOF);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case OBJECTINVERSEOF:
    case FULLIRI:
    case PNAME_LN:{
      subProperty = ObjectPropertyExpression();
      break;
      }
    case SUBOBJECTPROPERTYCHAIN:{
      chain = SubObjectPropertyChain();
      break;
      }
    default:
      jj_la1[26] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
    superProperty = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
if(subProperty != null) {
            {if ("" != null) return df.getOWLSubObjectPropertyOfAxiom(subProperty, superProperty, axiomAnnos);}
        }
        if(chain != null) {
            {if ("" != null) return df.getOWLSubPropertyChainOfAxiom(chain, superProperty, axiomAnnos);}
        }
        {if ("" != null) return null;}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom EquivalentObjectProperties() throws ParseException {Set props;
    Set axiomAnnos;
    jj_consume_token(EQUIVALENTOBJECTPROPERTIES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    props = ObjectPropertySet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLEquivalentObjectPropertiesAxiom(props, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom DisjointObjectProperties() throws ParseException {Set props;
    Set axiomAnnos;
    jj_consume_token(DISJOINTOBJECTPROPERTIES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    props = ObjectPropertySet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDisjointObjectPropertiesAxiom(props, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public Set ObjectPropertySet() throws ParseException {OWLObjectPropertyExpression prop;
    Set props = new HashSet();
    prop = ObjectPropertyExpression();
props.add(prop);
    prop = ObjectPropertyExpression();
props.add(prop);
    label_11:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case OBJECTINVERSEOF:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[27] = jj_gen;
        break label_11;
      }
      prop = ObjectPropertyExpression();
props.add(prop);
    }
{if ("" != null) return props;}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom ObjectPropertyRange() throws ParseException {OWLObjectPropertyExpression prop;
    OWLClassExpression range;
    Set axiomAnnos;
    jj_consume_token(OBJECTPROPERTYRANGE);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    range = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectPropertyRangeAxiom(prop, range, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom ObjectPropertyDomain() throws ParseException {OWLObjectPropertyExpression prop;
    OWLClassExpression desc;
    Set axiomAnnos;
    jj_consume_token(OBJECTPROPERTYDOMAIN);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    desc = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectPropertyDomainAxiom(prop, desc, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom FunctionalObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos = Collections.emptySet();
    jj_consume_token(FUNCTIONALOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLFunctionalObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom InverseObjectProperties() throws ParseException {OWLObjectPropertyExpression propA;
    OWLObjectPropertyExpression propB;
    Set axiomAnnos;
    jj_consume_token(INVERSEOBJECTPROPERTIES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    propA = ObjectPropertyExpression();
    propB = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLInverseObjectPropertiesAxiom(propA, propB, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom InverseFunctionalObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(INVERSEFUNCTIONALOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLInverseFunctionalObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom SymmetricObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(SYMMETRICOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLSymmetricObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom AsymmetricObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(ASYMMETRICOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLAsymmetricObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom ReflexiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(REFLEXIVEOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLReflexiveObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom IrreflexiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(IRREFLEXIVEOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLIrreflexiveObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom TransitiveObjectProperty() throws ParseException {OWLObjectPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(TRANSITIVEOBJECTPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLTransitiveObjectPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Data Property Axioms
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLPropertyAxiom DataPropertyAxiom() throws ParseException {OWLPropertyAxiom ax;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case SUBDATAPROPERTYOF:{
      ax = SubDataPropertyOf();
      break;
      }
    case EQUIVALENTDATAPROPERTIES:{
      ax = EquivalentDataProperties();
      break;
      }
    case DISJOINTDATAPROPERTIES:{
      ax = DisjointDataProperties();
      break;
      }
    case DATAPROPERTYRANGE:{
      ax = DataPropertyRange();
      break;
      }
    case DATAPROPERTYDOMAIN:{
      ax = DataPropertyDomain();
      break;
      }
    case FUNCTIONALDATAPROPERTY:{
      ax = FunctionalDataProperty();
      break;
      }
    default:
      jj_la1[28] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ax;}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom SubDataPropertyOf() throws ParseException {OWLDataPropertyExpression subProperty;
    OWLDataPropertyExpression superProperty;
    Set axiomAnnos;
    jj_consume_token(SUBDATAPROPERTYOF);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    subProperty = DataPropertyExpression();
    superProperty = DataPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLSubDataPropertyOfAxiom(subProperty, superProperty, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom EquivalentDataProperties() throws ParseException {Set props;
    Set axiomAnnos;
    jj_consume_token(EQUIVALENTDATAPROPERTIES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    props = DataPropertySet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLEquivalentDataPropertiesAxiom(props, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom DisjointDataProperties() throws ParseException {Set props;
    Set axiomAnnos;
    jj_consume_token(DISJOINTDATAPROPERTIES);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    props = DataPropertySet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDisjointDataPropertiesAxiom(props, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public Set DataPropertySet() throws ParseException {OWLDataPropertyExpression prop;
    Set props = new HashSet();
    prop = DataPropertyExpression();
props.add(prop);
    prop = DataPropertyExpression();
props.add(prop);
    label_12:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[29] = jj_gen;
        break label_12;
      }
      prop = DataPropertyExpression();
props.add(prop);
    }
{if ("" != null) return props;}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom DataPropertyDomain() throws ParseException {OWLDataPropertyExpression prop;
    OWLClassExpression domain;
    Set axiomAnnos;
    jj_consume_token(DATAPROPERTYDOMAIN);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = DataPropertyExpression();
    domain = ClassExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataPropertyDomainAxiom(prop, domain, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom DataPropertyRange() throws ParseException {OWLDataPropertyExpression prop;
    OWLDataRange rng;
    Set axiomAnnos;
    jj_consume_token(DATAPROPERTYRANGE);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = DataPropertyExpression();
    rng = DataRange();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataPropertyRangeAxiom(prop, rng, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLPropertyAxiom FunctionalDataProperty() throws ParseException {OWLDataPropertyExpression prop;
    Set axiomAnnos;
    jj_consume_token(FUNCTIONALDATAPROPERTY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = DataPropertyExpression();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLFunctionalDataPropertyAxiom(prop, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Individual Axioms
//
///////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLIndividualAxiom IndividualAxiom() throws ParseException {OWLIndividualAxiom ax;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case SAMEINDIVIDUAL:{
      ax = SameIndividuals();
      break;
      }
    case DIFFERENTINDIVIDUALS:{
      ax = DifferentIndividuals();
      break;
      }
    case CLASSASSERTION:{
      ax = ClassAssertion();
      break;
      }
    case OBJECTPROPERTYASSERTION:{
      ax = ObjectPropertyAssertion();
      break;
      }
    case DATAPROPERTYASSERTION:{
      ax = DataPropertyAssertion();
      break;
      }
    case NEGATIVEOBJECTPROPERTYASSERTION:{
      ax = NegativeObjectPropertyAssertion();
      break;
      }
    case NEGATIVEDATAPROPERTYASSERTION:{
      ax = NegativeDataPropertyAssertion();
      break;
      }
    default:
      jj_la1[30] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ax;}
    throw new Error("Missing return statement in function");
}

  final public Set IndividualSet() throws ParseException {OWLIndividual ind;
    Set individuals = new HashSet();
    ind = Individual();
individuals.add(ind);
    ind = Individual();
individuals.add(ind);
    label_13:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:
      case NODEID:{
        ;
        break;
        }
      default:
        jj_la1[31] = jj_gen;
        break label_13;
      }
      ind = Individual();
individuals.add(ind);
    }
{if ("" != null) return individuals;}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom SameIndividuals() throws ParseException {Set individuals;
    Set axiomAnnos;
    jj_consume_token(SAMEINDIVIDUAL);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    individuals = IndividualSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLSameIndividualAxiom(individuals, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom DifferentIndividuals() throws ParseException {Set individuals;
    Set axiomAnnos;
    jj_consume_token(DIFFERENTINDIVIDUALS);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    individuals = IndividualSet();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDifferentIndividualsAxiom(individuals, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom ClassAssertion() throws ParseException {OWLIndividual ind;
    OWLClassExpression desc;
    Set axiomAnnos;
    jj_consume_token(CLASSASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    desc = ClassExpression();
    ind = Individual();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLClassAssertionAxiom(desc, ind, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom ObjectPropertyAssertion() throws ParseException {OWLIndividual subj;
    OWLObjectPropertyExpression prop;
    OWLIndividual obj;
    Set axiomAnnos;
    jj_consume_token(OBJECTPROPERTYASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    subj = Individual();
    obj = Individual();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLObjectPropertyAssertionAxiom(prop, subj, obj, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom NegativeObjectPropertyAssertion() throws ParseException {OWLIndividual subj;
    OWLObjectPropertyExpression prop;
    OWLIndividual obj;
    Set axiomAnnos;
    jj_consume_token(NEGATIVEOBJECTPROPERTYASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = ObjectPropertyExpression();
    subj = Individual();
    obj = Individual();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLNegativeObjectPropertyAssertionAxiom(prop, subj, obj, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom DataPropertyAssertion() throws ParseException {OWLIndividual subj;
    OWLDataPropertyExpression prop;
    OWLLiteral obj;
    Set axiomAnnos;
    jj_consume_token(DATAPROPERTYASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = DataPropertyExpression();
    subj = Individual();
    obj = Literal();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLDataPropertyAssertionAxiom(prop, subj, obj, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividualAxiom NegativeDataPropertyAssertion() throws ParseException {OWLIndividual subj;
    OWLDataPropertyExpression prop;
    OWLLiteral obj;
    Set axiomAnnos;
    jj_consume_token(NEGATIVEDATAPROPERTYASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = DataPropertyExpression();
    subj = Individual();
    obj = Literal();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLNegativeDataPropertyAssertionAxiom(prop, subj, obj, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLNamedIndividual IndividualIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLNamedIndividual(iri);}
    throw new Error("Missing return statement in function");
}

  final public OWLIndividual Individual() throws ParseException {OWLIndividual ind;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      ind = IndividualIRI();
      break;
      }
    case NODEID:{
      ind = AnonymousIndividual();
      break;
      }
    default:
      jj_la1[32] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return ind;}
    throw new Error("Missing return statement in function");
}

  final public OWLObjectProperty ObjectPropertyIRI() throws ParseException {IRI iri;
    iri = IRI();
{if ("" != null) return df.getOWLObjectProperty(iri);}
    throw new Error("Missing return statement in function");
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Annotation Stuff
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLAxiom AnnotationAxiom() throws ParseException {OWLAxiom axiom;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case ANNOTATIONASSERTION:{
      axiom = AnnotationAssertion();
      break;
      }
    case ANNOTATIONPROPERTYDOMAIN:{
      axiom = AnnotationPropertyDomain();
      break;
      }
    case ANNOTATIONPROPERTYRANGE:{
      axiom = AnnotationPropertyRange();
      break;
      }
    case SUBANNOTATIONPROPERTYOF:{
      axiom = SubAnnotationPropertyOf();
      break;
      }
    default:
      jj_la1[33] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return axiom;}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotation Annotation() throws ParseException {OWLAnnotationProperty prop;
    OWLAnnotationValue val;
    Set annos = new HashSet();
    OWLAnnotation anno = null;
    jj_consume_token(ANNOTATION);
    jj_consume_token(OPENPAR);
    label_14:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case ANNOTATION:{
        ;
        break;
        }
      default:
        jj_la1[34] = jj_gen;
        break label_14;
      }
      anno = Annotation();
annos.add(anno);
    }
    prop = AnnotationPropertyIRI();
    val = AnnotationValue();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLAnnotation(prop, val, annos);}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationSubject AnnotationSubject() throws ParseException {OWLAnnotationSubject subj;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      subj = IRI();
      break;
      }
    case NODEID:{
      subj = AnonymousIndividual();
      break;
      }
    default:
      jj_la1[35] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return subj;}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationValue AnnotationValue() throws ParseException {OWLAnnotationValue value;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case FULLIRI:
    case PNAME_LN:{
      value = IRI();
      break;
      }
    case NODEID:{
      value = AnonymousIndividual();
      break;
      }
    case STRINGLITERAL:{
      value = Literal();
      break;
      }
    default:
      jj_la1[36] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return value;}
    throw new Error("Missing return statement in function");
}

  final public Set AxiomAnnotationSet() throws ParseException {Set annos = null;
    OWLAnnotation anno;
    label_15:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case ANNOTATION:{
        ;
        break;
        }
      default:
        jj_la1[37] = jj_gen;
        break label_15;
      }
      anno = Annotation();
if(annos == null) { annos = new HashSet(); }
        annos.add(anno);
    }
{if ("" != null) return annos  == null ? Collections.emptySet() : annos;}
    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);
{if ("" != null) return df.getOWLImportsDeclaration(iri);}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationAssertionAxiom AnnotationAssertion() throws ParseException {OWLAnnotationProperty prop;
    OWLAnnotationSubject subj;
    OWLAnnotationValue val;
    Set axiomAnnos;
    jj_consume_token(ANNOTATIONASSERTION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = AnnotationPropertyIRI();
    subj = AnnotationSubject();
    val = AnnotationValue();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLAnnotationAssertionAxiom(prop, subj, val, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLSubAnnotationPropertyOfAxiom SubAnnotationPropertyOf() throws ParseException {OWLAnnotationProperty subProp;
    OWLAnnotationProperty superProperty;
    Set axiomAnnos;
    jj_consume_token(SUBANNOTATIONPROPERTYOF);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    subProp = AnnotationPropertyIRI();
    superProperty = AnnotationPropertyIRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLSubAnnotationPropertyOfAxiom(subProp, superProperty, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationPropertyDomainAxiom AnnotationPropertyDomain() throws ParseException {IRI domain;
    OWLAnnotationProperty prop;
    Set axiomAnnos;
    jj_consume_token(ANNOTATIONPROPERTYDOMAIN);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = AnnotationPropertyIRI();
    domain = IRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLAnnotationPropertyDomainAxiom(prop, domain, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLAnnotationPropertyRangeAxiom AnnotationPropertyRange() throws ParseException {IRI range;
    OWLAnnotationProperty prop;
    Set axiomAnnos;
    jj_consume_token(ANNOTATIONPROPERTYRANGE);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    prop = AnnotationPropertyIRI();
    range = IRI();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLAnnotationPropertyRangeAxiom(prop, range, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLHasKeyAxiom HasKey() throws ParseException {OWLClassExpression ce;
    OWLPropertyExpression prop;
    Set props = new HashSet();
    Set axiomAnnos;
    jj_consume_token(HASKEY);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    ce = ClassExpression();
    jj_consume_token(OPENPAR);
    label_16:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case OBJECTINVERSEOF:
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[38] = jj_gen;
        break label_16;
      }
      prop = ObjectPropertyExpression();
props.add(prop);
    }
    jj_consume_token(CLOSEPAR);
    jj_consume_token(OPENPAR);
    label_17:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case FULLIRI:
      case PNAME_LN:{
        ;
        break;
        }
      default:
        jj_la1[39] = jj_gen;
        break label_17;
      }
      prop = DataPropertyExpression();
props.add(prop);
    }
    jj_consume_token(CLOSEPAR);
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getOWLHasKeyAxiom(ce, props, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLAxiom Declaration() throws ParseException {OWLEntity entity = null;
    IRI iri = null;
    OWLLiteral con = null;
    Set axiomAnnos;
    jj_consume_token(DECLARATION);
    jj_consume_token(OPENPAR);
    axiomAnnos = AxiomAnnotationSet();
    entity = Entity();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return ignoreAnnotationsAndDeclarations? null: df.getOWLDeclarationAxiom(entity, axiomAnnos);}
    throw new Error("Missing return statement in function");
}

  final public OWLEntity Entity() throws ParseException {OWLEntity entity;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case CLASS:{
      entity = Class();
      break;
      }
    case OBJECTPROP:{
      entity = ObjectProperty();
      break;
      }
    case DATAPROP:{
      entity = DataProperty();
      break;
      }
    case NAMEDINDIVIDUAL:{
      entity = NamedIndividual();
      break;
      }
    case DATATYPE:{
      entity = Datatype();
      break;
      }
    case ANNOTATIONPROPERTY:{
      entity = AnnotationProperty();
      break;
      }
    default:
      jj_la1[40] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return entity;}
    throw new Error("Missing return statement in function");
}

////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Data Stuff
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
OWLLiteral Literal() throws ParseException {boolean plain = true;
    String literal;
    OWLDatatype datatype = null;
    String lang = "";
    literal = QuotedString();
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case LANGIDENTIFIER:
    case DATATYPEIDENTIFIER:{
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case DATATYPEIDENTIFIER:{
        jj_consume_token(DATATYPEIDENTIFIER);
plain=false;
        datatype = DatatypeIRI();
        break;
        }
      case LANGIDENTIFIER:{
        jj_consume_token(LANGIDENTIFIER);
        lang = LangTag();
        break;
        }
      default:
        jj_la1[41] = jj_gen;
        jj_consume_token(-1);
        throw new ParseException();
      }
      break;
      }
    default:
      jj_la1[42] = jj_gen;
      ;
    }
if(plain) { {if ("" != null) return df.getOWLLiteral(literal, lang);} }
                // a float value in this syntax has an extra 'f' or 'F' character that must be removed to make a valid OWL literal
        if(datatype.isFloat() && (literal.endsWith("f")||literal.endsWith("F")) && !(literal.endsWith("inf")||literal.endsWith("INF"))){
                literal=literal.substring(0, literal.length()-1);
        }
        {if ("" != null) return df.getOWLLiteral(literal, datatype);}
    throw new Error("Missing return statement in function");
}

  final public String QuotedString() throws ParseException {Token t;
    t = jj_consume_token(STRINGLITERAL);
{if ("" != null) return EscapeUtils.unescapeString(t.image.substring(1, t.image.length() - 1));}
    throw new Error("Missing return statement in function");
}

  final public String LangTag() throws ParseException {Token t;
    t = jj_consume_token(PN_LOCAL);
{if ("" != null) return t.image;}
    throw new Error("Missing return statement in function");
}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Rules
//
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
  final public 
SWRLRule DLSafeRule() throws ParseException {Set annos;
    SWRLAtom atom;
    Set body;
    Set head;
    jj_consume_token(DLSAFERULE);
    jj_consume_token(OPENPAR);
    annos = AxiomAnnotationSet();
    jj_consume_token(BODY);
body=new LinkedHashSet();
    jj_consume_token(OPENPAR);
    label_18:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case CLASSATOM:
      case DATARANGEATOM:
      case OBJECTPROPERTYATOM:
      case DATAPROPERTYATOM:
      case BUILTINATOM:
      case SAMEINDIVIDUALATOM:
      case DIFFERENTINDIVIDUALSATOM:{
        ;
        break;
        }
      default:
        jj_la1[43] = jj_gen;
        break label_18;
      }
      atom = Atom();
body.add(atom);
    }
    jj_consume_token(CLOSEPAR);
    jj_consume_token(HEAD);
head= new LinkedHashSet();
    jj_consume_token(OPENPAR);
    label_19:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case CLASSATOM:
      case DATARANGEATOM:
      case OBJECTPROPERTYATOM:
      case DATAPROPERTYATOM:
      case BUILTINATOM:
      case SAMEINDIVIDUALATOM:
      case DIFFERENTINDIVIDUALSATOM:{
        ;
        break;
        }
      default:
        jj_la1[44] = jj_gen;
        break label_19;
      }
      atom = Atom();
head.add(atom);
    }
    jj_consume_token(CLOSEPAR);
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLRule(body, head, annos);}
    throw new Error("Missing return statement in function");
}

  final public SWRLAtom Atom() throws ParseException {SWRLAtom a;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case CLASSATOM:{
      a = ClassAtom();
      break;
      }
    case DATARANGEATOM:{
      a = DataRangeAtom();
      break;
      }
    case OBJECTPROPERTYATOM:{
      a = ObjectPropertyAtom();
      break;
      }
    case DATAPROPERTYATOM:{
      a = DataPropertyAtom();
      break;
      }
    case BUILTINATOM:{
      a = BuiltInAtom();
      break;
      }
    case SAMEINDIVIDUALATOM:{
      a = SameIndividualAtom();
      break;
      }
    case DIFFERENTINDIVIDUALSATOM:{
      a = DifferentIndividualsAtom();
      break;
      }
    default:
      jj_la1[45] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return a;}
    throw new Error("Missing return statement in function");
}

  final public SWRLClassAtom ClassAtom() throws ParseException {OWLClassExpression ce;
    SWRLIArgument arg0;
    jj_consume_token(CLASSATOM);
    jj_consume_token(OPENPAR);
    ce = ClassExpression();
    arg0 = IArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLClassAtom(ce, arg0);}
    throw new Error("Missing return statement in function");
}

  final public SWRLDataRangeAtom DataRangeAtom() throws ParseException {OWLDataRange rng;
    SWRLDArgument arg0;
    jj_consume_token(DATARANGEATOM);
    jj_consume_token(OPENPAR);
    rng = DataRange();
    arg0 = DArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLDataRangeAtom(rng, arg0);}
    throw new Error("Missing return statement in function");
}

  final public SWRLObjectPropertyAtom ObjectPropertyAtom() throws ParseException {OWLObjectPropertyExpression prop;
    SWRLIArgument arg0;
    SWRLIArgument arg1;
    jj_consume_token(OBJECTPROPERTYATOM);
    jj_consume_token(OPENPAR);
    prop = ObjectPropertyExpression();
    arg0 = IArg();
    arg1 = IArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLObjectPropertyAtom(prop, arg0, arg1);}
    throw new Error("Missing return statement in function");
}

  final public SWRLDataPropertyAtom DataPropertyAtom() throws ParseException {OWLDataProperty prop;
    SWRLIArgument arg0;
    SWRLDArgument arg1;
    jj_consume_token(DATAPROPERTYATOM);
    jj_consume_token(OPENPAR);
    prop = DataPropertyIRI();
    arg0 = IArg();
    arg1 = DArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLDataPropertyAtom(prop, arg0, arg1);}
    throw new Error("Missing return statement in function");
}

  final public SWRLBuiltInAtom BuiltInAtom() throws ParseException {IRI iri;
    List args;;
    SWRLDArgument arg;
    jj_consume_token(BUILTINATOM);
    jj_consume_token(OPENPAR);
args=new ArrayList();
    iri = IRI();
    arg = DArg();
args.add(arg);
    label_20:
    while (true) {
      switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
      case STRINGLITERAL:
      case VARIABLE:{
        ;
        break;
        }
      default:
        jj_la1[46] = jj_gen;
        break label_20;
      }
      arg = DArg();
args.add(arg);
    }
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLBuiltInAtom(iri, args);}
    throw new Error("Missing return statement in function");
}

  final public SWRLSameIndividualAtom SameIndividualAtom() throws ParseException {SWRLIArgument arg0;
    SWRLIArgument arg1;
    jj_consume_token(SAMEINDIVIDUALATOM);
    jj_consume_token(OPENPAR);
    arg0 = IArg();
    arg1 = IArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLSameIndividualAtom(arg0, arg1);}
    throw new Error("Missing return statement in function");
}

  final public SWRLDifferentIndividualsAtom DifferentIndividualsAtom() throws ParseException {SWRLIArgument arg0;
    SWRLIArgument arg1;
    jj_consume_token(DIFFERENTINDIVIDUALSATOM);
    jj_consume_token(OPENPAR);
    arg0 = IArg();
    arg1 = IArg();
    jj_consume_token(CLOSEPAR);
{if ("" != null) return df.getSWRLDifferentIndividualsAtom(arg0, arg1);}
    throw new Error("Missing return statement in function");
}

  final public SWRLIArgument IArg() throws ParseException {OWLNamedIndividual ind;
    SWRLIArgument arg;
    IRI iri;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case VARIABLE:{
      jj_consume_token(VARIABLE);
      jj_consume_token(OPENPAR);
      iri = IRI();
      jj_consume_token(CLOSEPAR);
arg = df.getSWRLVariable(iri);
      break;
      }
    case FULLIRI:
    case PNAME_LN:{
      ind = IndividualIRI();
arg = df.getSWRLIndividualArgument(ind);
      break;
      }
    default:
      jj_la1[47] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return arg;}
    throw new Error("Missing return statement in function");
}

  final public SWRLDArgument DArg() throws ParseException {SWRLDArgument arg;
    OWLLiteral literal;
    IRI iri;
    switch ((jj_ntk==-1)?jj_ntk_f():jj_ntk) {
    case VARIABLE:{
      jj_consume_token(VARIABLE);
      jj_consume_token(OPENPAR);
      iri = IRI();
      jj_consume_token(CLOSEPAR);
arg = df.getSWRLVariable(iri);
      break;
      }
    case STRINGLITERAL:{
      literal = Literal();
arg = df.getSWRLLiteralArgument(literal);
      break;
      }
    default:
      jj_la1[48] = jj_gen;
      jj_consume_token(-1);
      throw new ParseException();
    }
{if ("" != null) return arg;}
    throw new Error("Missing return statement in function");
}

  /** User defined Token Manager. */
  public TokenManager token_source;
  /** Current token. */
  public Token token;
  /** Next token. */
  public Token jj_nt;
  private int jj_ntk;
  private int jj_gen;
  final private int[] jj_la1 = new int[49];
  static private int[] jj_la1_0;
  static private int[] jj_la1_1;
  static private int[] jj_la1_2;
  static private int[] jj_la1_3;
  static private int[] jj_la1_4;
  static {
	   jj_la1_init_0();
	   jj_la1_init_1();
	   jj_la1_init_2();
	   jj_la1_init_3();
	   jj_la1_init_4();
	}
	private static void jj_la1_init_0() {
	   jj_la1_0 = new int[] {0x0,0x0,0x0,0x1010000,0x1010000,0xfce40000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x800,0x0,0x0,0x0,0xfce40000,0xe40000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c000000,0x1000000,0x0,0x800,0x1000000,0x0,0x0,0x2000000,0x180000,0x180000,0x0,0x0,0x0,0x800,0x0,0x800,};
	}
	private static void jj_la1_init_1() {
	   jj_la1_1 = new int[] {0x0,0x0,0x0,0x0,0x0,0x12000,0x0,0x7ffe0e00,0x7ffe0e00,0x0,0x7ffe0e00,0x7ffe0e00,0x7ffe0e00,0xc1c0,0xc1c0,0xc1c0,0x1000,0xc1c0,0x0,0xc1c0,0xc1c0,0x0,0x12000,0x0,0x2000,0x1000,0x80001000,0x1000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1000,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
	}
	private static void jj_la1_init_2() {
	   jj_la1_2 = new int[] {0x2000000,0x0,0x0,0x0,0x0,0x1ffffff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1ffffff,0x0,0xfff,0x0,0x0,0x0,0x3f000,0x0,0x1fc0000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
	}
	private static void jj_la1_init_3() {
	   jj_la1_3 = new int[] {0x0,0x9000000,0x9000000,0x0,0x0,0x10,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x9000000,0x0,0x9000000,0x9000000,0x9000000,0x10,0x0,0x0,0x9000000,0x9000000,0x9000000,0x0,0x9000000,0x0,0x9000000,0x9000000,0x0,0x0,0x9000000,0x9000000,0x0,0x9000000,0x9000000,0x0,0x0,0x0,0x3f80,0x3f80,0x3f80,0x4000,0x9004000,0x4000,};
	}
	private static void jj_la1_init_4() {
	   jj_la1_4 = new int[] {0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,};
	}


  /** Constructor with user supplied Token Manager. */
  public OWLFunctionalSyntaxParser(TokenManager tm) {
	 token_source = tm;
	 token = new Token();
	 jj_ntk = -1;
	 jj_gen = 0;
	 for (int i = 0; i < 49; i++) jj_la1[i] = -1;
  }

  /** Reinitialise. */
  public void ReInit(TokenManager tm) {
	 token_source = tm;
	 token = new Token();
	 jj_ntk = -1;
	 jj_gen = 0;
	 for (int i = 0; i < 49; i++) jj_la1[i] = -1;
  }

  private Token jj_consume_token(int kind) throws ParseException {
	 Token oldToken;
	 if ((oldToken = token).next != null) token = token.next;
	 else token = token.next = token_source.getNextToken();
	 jj_ntk = -1;
	 if (token.kind == kind) {
	   jj_gen++;
	   return token;
	 }
	 token = oldToken;
	 jj_kind = kind;
	 throw generateParseException();
  }


/** Get the next Token. */
  final public Token getNextToken() {
	 if (token.next != null) token = token.next;
	 else token = token.next = token_source.getNextToken();
	 jj_ntk = -1;
	 jj_gen++;
	 return token;
  }

/** Get the specific Token. */
  final public Token getToken(int index) {
	 Token t = token;
	 for (int i = 0; i < index; i++) {
	   if (t.next != null) t = t.next;
	   else t = t.next = token_source.getNextToken();
	 }
	 return t;
  }

  private int jj_ntk_f() {
	 if ((jj_nt=token.next) == null)
	   return (jj_ntk = (token.next=token_source.getNextToken()).kind);
	 else
	   return (jj_ntk = jj_nt.kind);
  }

  private java.util.List jj_expentries = new java.util.ArrayList();
  private int[] jj_expentry;
  private int jj_kind = -1;

  /** Generate ParseException. */
  public ParseException generateParseException() {
	 jj_expentries.clear();
	 boolean[] la1tokens = new boolean[130];
	 if (jj_kind >= 0) {
	   la1tokens[jj_kind] = true;
	   jj_kind = -1;
	 }
	 for (int i = 0; i < 49; i++) {
	   if (jj_la1[i] == jj_gen) {
		 for (int j = 0; j < 32; j++) {
		   if ((jj_la1_0[i] & (1<




© 2015 - 2024 Weber Informatics LLC | Privacy Policy