home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-19 | 442 b | 15 lines |
- // Copyright (c) 1997, 1998 Symantec, Inc. All Rights Reserved.
-
- /**
- * Objects that implement this interface may be quicksorted using the
- * WLAUtil method quickSort().
- */
- public interface Sortable {
-
- // Returns true if this "is before" the given obj
- public boolean isLessThan(Object obj);
-
- // Returns true if this "is before or equal to" the given obj
- public boolean isLessThanOrEqual(Object obj);
- }
-