home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Functions8.java < prev    next >
Text File  |  1998-05-08  |  616b  |  20 lines

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5. import com.objectspace.jgl.predicates.*;
  6.  
  7. public class Functions8
  8.   {
  9.   public static void main( String[] args )
  10.     {
  11.     double array[] = { 3, 1, 5, -2, 7, 9 };
  12.     DoubleArray doubleArray = new DoubleArray( array );
  13.     BinaryPredicate comparator = new LessNumber( Double.class );
  14.     System.out.println( "unsorted = " + doubleArray );
  15.  
  16.     Sorting.sort( doubleArray, comparator );
  17.     System.out.println( "sorted = " + doubleArray );
  18.     }
  19.   }
  20.