home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Container2.java < prev    next >
Text File  |  1997-07-30  |  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.