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

org.protege.owlapi.inference.orphan.Relation Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

The newest version!
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy