

/**
Define a single binary predicate.  Every relationship implements execute to be
one of the predicates <, <=, =, ~=, >= >.
<P>
@author Gunnar Gotshalks
@see java.util.Vector
@version 1.0 1999 Jan 15
*/

package FlexOr.container;

public interface BinaryPredicate {
/**
Defines the method that makes the comparison.
*/

  boolean execute(Object a, Object b);
}