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

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