//
// Sortable - an interface for things that can be sorted
//
// $Id: Sortable.java,v 1.1 1996/12/06 03:42:58 mdb Exp $


public interface Sortable {
    //
    // Sortable public member functions

    public boolean lessThan(Sortable other);
}
