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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. public class Iterators2
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     Array array = new Array();
  9.     array.add( "magical" );
  10.     array.add( "mystery" );
  11.     array.add( "tour" );
  12.     System.out.println( "before array = " + array );
  13.     toUppercase( array );
  14.     System.out.println( "after array = " + array );
  15.  
  16.     DList list = new DList();
  17.     list.add( "magical" );
  18.     list.add( "mystery" );
  19.     list.add( "tour" );
  20.     System.out.println( "before list = " + list );
  21.     toUppercase( list );
  22.     System.out.println( "after list = " + list );
  23.     }
  24.  
  25.   static void toUppercase( Container container )
  26.     {
  27.     // Obtain iterator positioned at first element.
  28.     ForwardIterator iterator = container.start();
  29.  
  30.     // Obtain iterator positioned immediately after last element.
  31.     ForwardIterator end = container.finish();
  32.  
  33.     // Loop through every element.
  34.     while ( !iterator.equals( end ) )
  35.       {
  36.       String current = (String) iterator.get();
  37.       // Replace current element with uppercase equivalent.
  38.       iterator.put( current.toUpperCase() );
  39.       iterator.advance(); // Move forward by one element.
  40.       }
  41.     }
  42.   }
  43.