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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. public class Iterators1
  6.   {
  7.   public static void main( String[] args )
  8.     {
  9.     Array array = new Array();
  10.     array.add( "magical" );
  11.     array.add( "mystery" );
  12.     array.add( "tour" );
  13.     Enumeration iterator = array.elements();
  14.     while ( iterator.hasMoreElements() )
  15.       System.out.println( iterator.nextElement() );
  16.     }
  17.   }
  18.