org.protege.owlapi.inference.orphan.Relation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protege-owlapi-extensions Show documentation
Show all versions of protege-owlapi-extensions Show documentation
Extensions to the OWL API (http://owlapi.sourceforge.net/) for Protege
package org.protege.owlapi.inference.orphan;
import java.util.Collection;
/**
* This interface simply represents a relation
* R: X -> X.
*
* @author tredmond
*
*/
public interface Relation {
Collection getR(X x);
}