home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / BinaryComparator.java < prev    next >
Encoding:
Java Source  |  1997-07-30  |  335 b   |  9 lines

  1. package borland.samples.intl.beans;
  2.  
  3. public interface BinaryComparator {
  4.   // Should return a value less than zero, equal to zero, or greater than zero,
  5.   // depending upon whether the first value is less than, equal to, or greater
  6.   // than the second value, respectively.
  7.   public int compare(Object first, Object second);
  8. }
  9.