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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.util.*;
  4.  
  5. public class Overview10
  6.   {
  7.   public static void main( String[] args )
  8.     {
  9.     Array array = new Array();
  10.     array.add( "jolly" );
  11.     array.add( "good" );
  12.     array.add( "show" );
  13.  
  14.     // Create a reverse iterator positioned at the end of the array.
  15.     ReverseIterator iterator = new ReverseIterator( array.end() );
  16.     while ( iterator.hasMoreElements() )
  17.       System.out.println( iterator.nextElement() );
  18.     }
  19.   }
  20.