Package uk.ac.manchester.owl.owlapi.tutorial.examples

Source Code of uk.ac.manchester.owl.owlapi.tutorial.examples.ClosureAxiomsExample

/* This file is part of the OWL API.
* The contents of this file are subject to the LGPL License, Version 3.0.
* Copyright 2014, The University of Manchester
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with this program.  If not, see http://www.gnu.org/licenses/.
*
* Alternatively, the contents of this file may be used under the terms of the Apache License, Version 2.0 in which case, the provisions of the Apache License Version 2.0 are applicable instead of those above.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
package uk.ac.manchester.owl.owlapi.tutorial.examples;

import static org.semanticweb.owlapi.apibinding.OWLFunctionalSyntaxFactory.Class;

import javax.annotation.Nonnull;

import org.semanticweb.owlapi.apibinding.OWLManager;
import org.semanticweb.owlapi.model.IRI;
import org.semanticweb.owlapi.model.OWLClass;
import org.semanticweb.owlapi.model.OWLException;
import org.semanticweb.owlapi.model.OWLOntology;
import org.semanticweb.owlapi.model.OWLOntologyManager;

import uk.ac.manchester.owl.owlapi.tutorial.ClosureAxioms;

/**
* This class demonstrates some aspects of the OWL API. It expects three
* arguments:
* <ol>
* <li>The URI of an ontology</li>
* <li>The URI of destination</li>
* <li>The URI of a class</li>
* </ol>
* When executed, the class will find all subclass axioms that form part of the
* definition of the given class. For each of these, if the superclass is a
* conjunction of existential restrictions, then an additional subclass axiom
* will be added to the ontology, "closing" the restrictions.
*
* @author Sean Bechhofer, The University Of Manchester, Information Management
*         Group
* @since 2.0.0
*/
public class ClosureAxiomsExample {

    /**
     * @param inputOntology
     *        input ontology IRI
     * @param outputOntology
     *        output ontology IRI
     * @param classToClose
     *        the class to compute the closure of
     * @throws OWLException
     *         if an exception is raised
     */
    public void closure(@Nonnull String inputOntology,
            @Nonnull String outputOntology, @Nonnull String classToClose)
            throws OWLException {
        /* Create and Ontology Manager */
        OWLOntologyManager manager = OWLManager.createOWLOntologyManager();
        IRI documentIRI = IRI.create(inputOntology);
        IRI classIRI = IRI.create(classToClose);
        IRI outputDocumentIRI = IRI.create(outputOntology);
        /* Load an ontology */
        System.out.println("Loading: " + documentIRI);
        OWLOntology ontology = manager
                .loadOntologyFromOntologyDocument(documentIRI);
        System.out.println("Ontology Loaded...");
        System.out.println("Logical URI : " + documentIRI);
        System.out.println("Document IRI: " + ontology.getOntologyID());
        System.out.println("Format      : "
                + manager.getOntologyFormat(ontology));
        ClosureAxioms closureAxioms = new ClosureAxioms(manager, ontology);
        OWLClass clazz = Class(classIRI);
        System.out.println("Class URI   : " + classIRI);
        System.out.println(clazz);
        /* Add the closure axioms */
        closureAxioms.addClosureAxioms(clazz);
        /* Now save a copy to another location */
        System.out.println("Saving: " + outputDocumentIRI);
        manager.saveOntology(ontology, outputDocumentIRI);
        System.out.println("Ontology Saved...");
        System.out.println("Document IRI : " + outputDocumentIRI);
        /* Remove the ontology from the manager */
        manager.removeOntology(ontology);
        System.out.println("Done");
    }
}
TOP

Related Classes of uk.ac.manchester.owl.owlapi.tutorial.examples.ClosureAxiomsExample

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.