home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / inprise / JSAMPLES.Z / Voyager1.java < prev    next >
Text File  |  1998-05-08  |  2KB  |  53 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.  * Remote creation and manipulation of containers.
  8.  *
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class Voyager1
  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 map that allows duplicate keys
  24.       VHashMap map = new VHashMap( true, "localhost:8000" );
  25.  
  26.       // fill remote map
  27.       map.add( "city", "Austin" );
  28.       map.add( "song", "Texas Fight!" );
  29.       map.add( "mascot", "Bevo" );
  30.       map.add( "mascot", "Longhorns" );
  31.       System.out.println( "map = " + map ); // prints locally
  32.  
  33.       // query remote container
  34.       System.out.println( "map.size() = " + map.size() );
  35.       System.out.println( "map.empty() = " + map.isEmpty() );
  36.       System.out.println( "map.get( \"song\" ) = " + map.get( "song" ) );
  37.  
  38.       // mutate remote container
  39.       map.clear();
  40.       System.out.println( "\nafter remote map is cleared..." );
  41.       System.out.println( "map.size() = " + map.size() );
  42.       System.out.println( "map.empty() = " + map.isEmpty() );
  43.       System.out.println( "map.get( \"song\" ) = " + map.get( "song" ) );
  44.       }
  45.     catch ( VoyagerException ex )
  46.       {
  47.       System.err.println( "caught: " + ex );
  48.       }
  49.  
  50.     Voyager.shutdown();
  51.     }
  52.   }
  53.