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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. public class Container7
  5.   {
  6.   public static void main( String[] args )
  7.     {
  8.     Array array = new Array();
  9.     array.add( "ape" );
  10.     array.add( "cat" );
  11.     try
  12.       {
  13.       Object object = array.at( 5 );
  14.       }
  15.     catch ( IndexOutOfBoundsException exception )
  16.       {
  17.       System.out.println( "Caught " + exception );
  18.       }
  19.     }
  20.   }
  21.