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

org.semanticweb.owlapi.model.HasContainsOntology 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
 */
public interface HasContainsOntology {

    /**
     * Determines if this object contains an ontology that has the specified
     * {@link org.semanticweb.owlapi.model.OWLOntologyID}.
     * 
     * @param id
     *        The {@link OWLOntologyID} to test for. Not {@code null}.
     * @return {@code true} if this object contains an ontology that has the
     *         specified Id, otherwise, {@code false}.
     */
    boolean contains(OWLOntologyID id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy