next up previous contents
Next: Trash Class Up: MyUtil Package Previous: Sort Class

Sortable Interface

The Sortable interface includes a precedes() method which Sort class methods use to order Sortable objects.

package MyUtil;

public interface Sortable {

        public boolean precedes(Sortable s, int order);

}



Kelly Waters
Mon Oct 27 18:18:15 EST 1997