package baf.util; /** This interface is exactly the same as the java.util.Comparable interface * of JDK 1.2. It is also equivalent to baf.util.Sortable, which it * replaces. When JDK 1.2 is ported to Linux, this class should be * removed from the source tree. */ public interface Comparable { public int compareTo(Object o); }