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

  1. // Copyright(c) 1996,1997 ObjectSpace, Inc.
  2. import com.objectspace.jgl.*;
  3.  
  4. /**
  5.  * Removing.
  6.  *
  7.  * @see com.objectspace.jgl.SList
  8.  * @version 3.0.0
  9.  * @author ObjectSpace, Inc.
  10.  */
  11.  
  12. public class SList7
  13.   {
  14.   public static void main( String[] args )
  15.     {
  16.     SList list = new SList();
  17.     list.add( "x" );
  18.     list.add( "l" );
  19.     list.add( "x" );
  20.     list.add( "g" );
  21.     list.add( "s" );
  22.     list.add( "s" );
  23.     System.out.println( "list = " + list );
  24.  
  25.     list.remove( "x" );
  26.     System.out.println( "After list.remove( x ) = " + list );
  27.     }
  28.   }
  29.