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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3. import java.util.Enumeration;
  4.  
  5. /**
  6.  * Construction, enumeration, access, pushing, popping.
  7.  *
  8.  * @see com.objectspace.jgl.SList
  9.  * @version 3.0.0
  10.  * @author ObjectSpace, Inc.
  11.  */
  12.  
  13. public class SList1
  14.   {
  15.   public static void main( String[] args )
  16.     {
  17.     SList list = new SList();
  18.     list.pushBack( "bat" );
  19.     list.add( "cat" );
  20.     list.pushFront( "ape" );
  21.     System.out.println( list );
  22.     System.out.println();
  23.  
  24.     System.out.println( "Enumerate the SList" );
  25.     Enumeration e = list.elements();
  26.     while ( e.hasMoreElements() )
  27.       System.out.println( e.nextElement() );
  28.     System.out.println();
  29.  
  30.     System.out.println( "Iterate through the SList" );
  31.     for ( SListIterator i = list.begin(); !i.equals( list.end() ); i.advance() )
  32.       System.out.println( i.get() );
  33.     System.out.println();
  34.  
  35.     System.out.println( "Demonstrate access" );
  36.     System.out.println( "list.at( 0 ) = " + list.at( 0 ) );
  37.     System.out.println( "list.front() = " + list.front() );
  38.     System.out.println( "list.at( 2 ) = " + list.at( 2 ) );
  39.     System.out.println( "list.back() = " + list.back() );
  40.     System.out.println();
  41.  
  42.     System.out.println( "Demonstrate modification" );
  43.     list.put( 1, "fox" );
  44.     System.out.println( list );
  45.  
  46.     System.out.println( "popFront() returns: " + list.popFront() );
  47.     System.out.println( "After popFront() = " + list );
  48.  
  49.     System.out.println( "popBack() returns: " + list.popBack() );
  50.     System.out.println( "After popBack() = " + list );
  51.     }
  52.   }
  53.