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 >
Wrap
Text File
|
1998-05-08
|
579b
|
29 lines
// Copyright(c) 1996,1997 ObjectSpace, Inc.
import com.objectspace.jgl.*;
/**
* Removing.
*
* @see com.objectspace.jgl.SList
* @version 3.0.0
* @author ObjectSpace, Inc.
*/
public class SList7
{
public static void main( String[] args )
{
SList list = new SList();
list.add( "x" );
list.add( "l" );
list.add( "x" );
list.add( "g" );
list.add( "s" );
list.add( "s" );
System.out.println( "list = " + list );
list.remove( "x" );
System.out.println( "After list.remove( x ) = " + list );
}
}