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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Use of List as underlying Sequence.
  6.  *
  7.  * @see com.objectspace.jgl.Queue
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class Queue2
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     // Use a DList as the underlying data structure.
  17.     Queue queue = new Queue( new DList() );
  18.     queue.push( "bat" );
  19.     queue.push( "cat" );
  20.     queue.push( "dog" );
  21.  
  22.     System.out.println( "Print the queue." );
  23.     System.out.println( queue );
  24.     }
  25.   }
  26.