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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.functions.*;
  5. import com.objectspace.jgl.util.*;
  6.  
  7. /**
  8.  * Transforming - collect objects from a container
  9.  *
  10.  * @see com.objectspace.jgl.algorithms.Transforming
  11.  * @version 3.0.0
  12.  * @author ObjectSpace, Inc.
  13.  */
  14.  
  15. public class Transforming2
  16.   {
  17.   public static void main( String[] args )
  18.     {
  19.     Array array = new Array();
  20.     array.add( "dog" );
  21.     array.add( "barking animal" );
  22.     array.add( "walking" );
  23.     DList dlist = new DList();
  24.     Copying.copy( array, new InsertIterator( dlist ) );
  25.  
  26.     System.out.println( "array = " + array );
  27.     System.out.println( "dlist = " + dlist );
  28.  
  29.     System.out.println();
  30.     System.out.println( "collect(array) = " + Transforming.collect( array.begin(), array.end(), new LengthString() ) );
  31.     System.out.println( "collect(dlist) = " + Transforming.collect( dlist, new LengthString() ) );
  32.     }
  33.   }
  34.