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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. public class Overview1
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     HashMap chemicals = new HashMap();
  9.     chemicals.put( "Ca", "Calcium" );
  10.     chemicals.put( "Au", "Gold" );
  11.     chemicals.put( "He", "Helium" );
  12.     System.out.println( "chemicals = " + chemicals );
  13.     System.out.println( "Au means " + chemicals.get( "Au" ) );
  14.     }
  15.   }
  16.