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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import COM.objectspace.jgl.*;
  3.  
  4. public class Overview8
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     Array array = new Array();
  9.     array.add( new Integer( 3 ) );
  10.     array.add( new Integer( -1 ) );
  11.     array.add( new Integer( 2 ) );
  12.     System.out.println( "Unsorted Array = " + array );
  13.     BinaryPredicate predicate = new GreaterNumber();
  14.     Sorting.sort( array, predicate ); // Sort in descending order.
  15.     System.out.println( "Sorted = " + array );
  16.     }
  17.   }
  18.