Examples of makeLoadImportRequest()


Examples of org.semanticweb.owl.model.OWLOntologyManager.makeLoadImportRequest()

        if (!schemaImportsURIs.contains(object)) {
            OWLImportsDeclaration importsDeclaration = getDataFactory().getOWLImportsDeclarationAxiom(getConsumer().getOntology(),
                                                                                                      object);
            addAxiom(importsDeclaration);
            OWLOntologyManager man = getConsumer().getOWLOntologyManager();
            man.makeLoadImportRequest(importsDeclaration);
            getConsumer().importsClosureChanged();
        }
        // We need to think about what we should do when the subject of the imports statement doesn't
        // match the ontology being parsed
//        OWLOntology importing = getConsumer().getOWLOntologyManager().getOntology(subject);
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLOntologyManager.makeLoadImportRequest()

            OWLImportsDeclaration importsDeclaration = df
                    .getOWLImportsDeclaration(object);
            consumer.addImport(importsDeclaration);
            if (!consumer.getConfiguration().isIgnoredImport(object)) {
                OWLOntologyManager man = consumer.getOWLOntologyManager();
                man.makeLoadImportRequest(importsDeclaration,
                        consumer.getConfiguration());
                OWLOntology importedOntology = man
                        .getImportedOntology(importsDeclaration);
                if (importedOntology != null) {
                    OWLDocumentFormat importedOntologyFormat = man
View Full Code Here

Examples of org.semanticweb.owlapi.model.OWLOntologyManager.makeLoadImportRequest()

        OWLImportsDeclaration importsDeclaration = getDataFactory().getOWLImportsDeclaration(object);
        getConsumer().addImport(importsDeclaration);

        if (!getConsumer().getConfiguration().isIgnoredImport(object)) {
            OWLOntologyManager man = getConsumer().getOWLOntologyManager();
            man.makeLoadImportRequest(importsDeclaration, getConsumer().getConfiguration());


            OWLOntology importedOntology = man.getImportedOntology(importsDeclaration);
            if (importedOntology != null) {
                OWLOntologyFormat importedOntologyFormat = man.getOntologyFormat(importedOntology);
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.