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

org.semanticweb.owlapi.model.HasGetOntologyById Maven / Gradle / Ivy

There is a newer version: 5.5.1
Show newest version
package org.semanticweb.owlapi.model;

/**
 * @author Matthew Horridge, Stanford University, Bio-Medical Informatics
 *         Research Group, Date: 24/02/2014
 * @since 3.5
 */
public interface HasGetOntologyById {

    /**
     * Get the ontology with the specified Id.
     * 
     * @param ontologyID
     *        The Id. Not {@code null}.
     * @return The ontology with the specified Id, or {@code null} if there is
     *         no ontology with the specified Id.
     */
    OWLOntology getOntology(OWLOntologyID ontologyID);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy