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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Counting, finding, erasing, replacing, removing.
  6.  *
  7.  * @see com.objectspace.jgl.SList
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class SList2
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     SList list = new SList();
  17.     list.add( "ape" );
  18.     list.add( "bat" );
  19.     list.add( "cat" );
  20.     list.add( "bat" );
  21.     list.add( "bat" );
  22.     list.add( "cat" );
  23.     System.out.println( list );
  24.     System.out.println();
  25.  
  26.     System.out.println( "list.count( bat ) = " + list.count( "bat" ) );
  27.     SListIterator iterator = list.find( "bat" );
  28.     if ( !iterator.atEnd() )
  29.       {
  30.       System.out.println( "object at list.find( bat ) = " + iterator.get() );
  31.       list.remove( iterator );
  32.       System.out.println( "After list.remove( iterator ) = " + list );
  33.       }
  34.  
  35.     SListIterator start = list.begin();
  36.     SListIterator finish = list.begin();
  37.     finish.advance( 3 );
  38.     list.replace( start, finish, "bat", "BAT" );
  39.     System.out.println( "After list.replace( start, finish, bat, BAT ) = " + list );
  40.  
  41.     System.out.println( "list.remove( cat ) = " + list.remove( "cat" ) );
  42.     System.out.println( "After list.remove( cat ) = " + list );
  43.     list.remove( list.begin() );
  44.     System.out.println( "After list.remove( begin() ) = " + list );
  45.     }
  46.   }
  47.