home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 589 b | 20 lines |
- // Copyright(c) 1996,1997 ObjectSpace, Inc.
- import COM.objectspace.jgl.*;
- import Company;
-
- public class Container6
- {
- public static void main( String[] args )
- {
- Company company1 = new Company( "ObjectSpace" );
- Company company2 = new Company( "Sun Microsystems" );
-
- HashMap headquarters = new HashMap();
- headquarters.put( company1, "Texas" );
- headquarters.put( company2, "California" );
-
- String location = (String) headquarters.get( company1 );
- System.out.println( "The headquarters of " + company1 + " are in " + location );
- }
- }
-