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

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