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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.algorithms.*;
  4. import com.objectspace.jgl.util.*;
  5. import java.util.Enumeration;
  6.  
  7. public class Iterators9
  8.   {
  9.   public static void main( String[] args )
  10.     {
  11.     Array array = new Array();
  12.     array.add( "ape" );
  13.     array.add( "bat" );
  14.     array.add( "cat" );
  15.  
  16.     OutputStreamIterator output = new OutputStreamIterator( System.out );
  17.     Enumeration input = array.elements();
  18.  
  19.     while ( input.hasMoreElements() )
  20.       output.put( input.nextElement() );
  21.     System.out.println(); // Flush output.
  22.  
  23.     // You can use an algorithm to do the same thing.
  24.     Copying.copy( array, output );
  25.     System.out.println(); // Flush output.
  26.     }
  27.   }
  28.