org.semanticweb.owlapi.model.HasImportsClosure Maven / Gradle / Ivy
package org.semanticweb.owlapi.model;
import java.util.Set;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 18/02/2014
*
* An interface to objects that provide an imports closure of themselves
*
*/
public interface HasImportsClosure {
/**
* Gets the imports closure
*
* @return A set of ontology representing the imports closure of this object
* (includes this object). Not empty and not {@code null}.
*/
Set getImportsClosure();
}