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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Exceptions.
  6.  *
  7.  * @see com.objectspace.jgl.DList
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class DList4
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     DList dlist = new DList();
  17.     try
  18.       {
  19.       dlist.popBack();
  20.       }
  21.     catch ( InvalidOperationException exception )
  22.       {
  23.       System.out.println( "Caught " + exception );
  24.       }
  25.     dlist.add( "ape" );
  26.     dlist.add( "bat" );
  27.     dlist.add( "cat" );
  28.     try
  29.       {
  30.       dlist.at( 5 );
  31.       }
  32.     catch ( IndexOutOfBoundsException exception )
  33.       {
  34.       System.out.println( "Caught " + exception );
  35.       }
  36.  
  37.     }
  38.   }
  39.