/* * Testable - supports the methods isLessThan, isEqualTo */ public interface Testable { /* Returns true if this object is less than x */ public boolean isLessThan( Object x ); }