edu.stanford.protege.webprotege.index.NamedIndividualFrameAxiomIndex Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.index;
import org.semanticweb.owlapi.model.OWLAxiom;
import org.semanticweb.owlapi.model.OWLNamedIndividual;
import javax.annotation.Nonnull;
import java.util.Set;
/**
* Matthew Horridge
* Stanford Center for Biomedical Informatics Research
* 2020-07-06
*/
public interface NamedIndividualFrameAxiomIndex {
/**
* Gets the axiomsSource that constitute the frame for a named individual
* @param subject The subject of the frame
* @return The set of axiomsSource that make up the frame for the individual
*/
@Nonnull
Set getNamedIndividualFrameAxioms(@Nonnull OWLNamedIndividual subject);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy