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

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