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

  1. // Copyright(c) 1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import com.objectspace.jgl.voyager.*;
  4. import com.objectspace.voyager.*;
  5.  
  6. /**
  7.  * Iteration through a remote container.
  8.  *
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Voyager2
  14.   {
  15.   /**
  16.    * This example only works with ObjectSpace Voyager(tm).
  17.    * Visit the <a href=http://www.objectspace.com/voyager>Voyager homepage</a> for more information.
  18.    */
  19.   public static void main( String[] args )
  20.     {
  21.     try
  22.       {
  23.       // create a remote list
  24.       VSList list = new VSList( "localhost:8000" );
  25.       new VSListIterator(); // force class loading
  26.  
  27.       // fill remote list
  28.       list.add( "yakko" );
  29.       list.add( "wakko" );
  30.       list.add( "dot" );
  31.       System.out.println( "lowercase = " + list );
  32.  
  33.       // obtain a local iterator to the remote list
  34.       list.setVirtual( true );
  35.       ForwardIterator iterator = list.start();
  36.       list.setVirtual( false );
  37.  
  38.       // change all elements in remote list to uppercase
  39.       while ( !iterator.atEnd() )
  40.         {
  41.         String current = (String)iterator.get();
  42.         iterator.put( current.toUpperCase() );
  43.         iterator.advance();
  44.         }
  45.       System.out.println( "uppercase = " + list );
  46.       }
  47.     catch ( VoyagerException ex )
  48.       {
  49.       System.err.println( "caught: " + ex );
  50.       }
  51.  
  52.     Voyager.shutdown();
  53.     }
  54.   }
  55.