home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Iterators8.java < prev    next >
Text File  |  1998-05-08  |  702b  |  24 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. public class Iterators8
  8.   {
  9.   public static void main( String[] args )
  10.     {
  11.     Array array = new Array();
  12.     array.add( "ape" );
  13.     array.add( "giraffe" );
  14.     array.add( "elephant" );
  15.     System.out.println( "array = " + array );
  16.  
  17.     Deque deque = new Deque();
  18.     InsertIterator iterator = new InsertIterator( deque );
  19.     UnaryFunction function = new LengthString();
  20.     Transforming.transform( array, iterator, function );
  21.     System.out.println( "deque = " + deque );
  22.     }
  23.   }
  24.