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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.adapters.*;
  4. import com.objectspace.jgl.algorithms.*;
  5.  
  6. /**
  7.  * Adapting built in Java arrays of Integers with algorithm usage.
  8.  *
  9.  * @see com.objectspace.jgl.util.ArrayAdapter
  10.  * @version 3.0.0
  11.  * @author ObjectSpace, Inc.
  12.  */
  13.  
  14. public class Adapters1
  15.   {
  16.   public static void main( String[] args )
  17.     {
  18.     int ints[] = { 3, -1, 2, -3, 4 };
  19.     IntArray intArray = new IntArray( ints );
  20.     System.out.println( "Unsorted native int array = " + intArray );
  21.  
  22.     Sorting.sort( intArray );
  23.     System.out.println( "Sorted = " + intArray );
  24.  
  25.     Shuffling.randomShuffle( intArray );
  26.     System.out.println( "Randomized = " + intArray );
  27.  
  28.     for ( int i = 0; i < ints.length; i++ )
  29.       System.out.print( ints[ i ] + " " );
  30.     System.out.println();
  31.     }
  32.   }
  33.