home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Functions4.java < prev    next >
Text File  |  1997-07-30  |  493b  |  16 lines

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import COM.objectspace.jgl.*;
  3.  
  4. public class Functions4
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     long array[] = { 3, 1, 5, -2, 7, 9 };
  9.     LongArray longArray = new LongArray( array );
  10.     BinaryPredicate comparator = new LessNumber( new Long( 0 ).getClass() );
  11.     System.out.println( "unsorted = " + longArray );
  12.     Sorting.sort( longArray, comparator );
  13.     System.out.println( "sorted = " + longArray );
  14.     }
  15.   }
  16.