home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Algorithms9.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  49 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. import com.objectspace.jgl.functions.*;
  6.  
  7. /**
  8.  * Transforming provides algorithms for modifying elements in a sequence.
  9.  *
  10.  * @see com.objectspace.jgl.algorithms.Transforming
  11.  * @version 3.0.0
  12.  * @author ObjectSpace, Inc.
  13.  */
  14.  
  15. public class Algorithms9
  16.   {
  17.   public static void main( String[] args )
  18.     {
  19.     int ints1[] = { 1, 3, 5, 2 };
  20.     Array array = new Array();
  21.     IntArray intArray1 = new IntArray( ints1 );
  22.     UnaryFunction function = new NegateNumber();
  23.     Transforming.transform( intArray1, array, function );
  24.     System.out.println( "ints1 = " + intArray1 );
  25.     System.out.println( "array = " + array );
  26.     System.out.println();
  27.  
  28.     int ints2[] = { 2, 4, 2, 3 };
  29.     int ints3[] = { 3, 6, 2, 1 };
  30.     SList list = new SList();
  31.     IntArray intArray2 = new IntArray( ints2 );
  32.     IntArray intArray3 = new IntArray( ints3 );
  33.     BinaryFunction function2 = new TimesNumber();
  34.     Transforming.transform( intArray2, intArray3, list, function2 );
  35.     System.out.println( "ints2 = " + intArray2 );
  36.     System.out.println( "ints3 = " + intArray3 );
  37.     System.out.println( "list = " + list );
  38.     System.out.println();
  39.  
  40.     Array array1 = new Array();
  41.     array1.add( "cat" );
  42.     array1.add( "monkey" );
  43.     array1.add( "goat" );
  44.     System.out.println( "array1 = " + array1 );
  45.     Array array2 = (Array)Transforming.collect( array1, new LengthString() );
  46.     System.out.println( "array2 = " + array2 );
  47.     }
  48.   }
  49.