home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / Deque4.java < prev    next >
Text File  |  1997-07-30  |  736b  |  40 lines

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