Conditional.java revision 2
/*
* Created on Aug 26, 2004
*/
/**
* General interface to define a conditional construct such as If-Then-Else, Repeat-While, etc.
*
* @author Evren Sirin
*/
public interface Conditional extends OWLIndividual {
/**
* Return the condition. If there is more than one return any one of them.
*
* @return
*/
public Condition getCondition();
}