home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 335 b | 9 lines |
- package borland.samples.intl.beans;
-
- public interface BinaryComparator {
- // Should return a value less than zero, equal to zero, or greater than zero,
- // depending upon whether the first value is less than, equal to, or greater
- // than the second value, respectively.
- public int compare(Object first, Object second);
- }
-