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

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