List.remove
Class Overview | Class Members |
This Package |
All Packages
public synchronized void remove( String item )
Parameters
- item
- the item to remove from the list.
Description
Removes the first occurrence of an item from the list.
Exceptions
IllegalArgumentException
if the item doesn't exist in the list.
public synchronized void remove( int position )
Parameters
- position
- the index of the item to delete.
Description
Remove the item at the specified position
from this scrolling list.
See Also
add