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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.predicates.*;
  5.  
  6. public class Functions3
  7.   {
  8.   public static void main( String[] args )
  9.     {
  10.     Deque deque = new Deque();
  11.     deque.add( "cat" );
  12.     deque.add( "ape" );
  13.     deque.add( "dog" );
  14.     deque.add( "bat" );
  15.     System.out.println( "unsorted = " + deque );
  16.     BinaryPredicate comparator = new GreaterString();
  17.     Sorting.sort( deque, comparator );
  18.     System.out.println( "sorted = " + deque );
  19.     }
  20.   }
  21.