Class SynchronizedMutableSet<T>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<T>, Collection<T>, Set<T>, MutableCollection<T>, InternalIterable<T>, RichIterable<T>, MutableSet<T>, MutableSetIterable<T>, SetIterable<T>, UnsortedSetIterable<T>

public class SynchronizedMutableSet<T>
extends AbstractSynchronizedMutableCollection<T>
implements MutableSet<T>, Serializable
A synchronized view of a MutableSet. It is imperative that the user manually synchronize on the collection when iterating over it using the standard JDK iterator or JDK 5 for loop, as per Collections.synchronizedCollection(Collection).
See Also:
MutableSet.asSynchronized(), Serialized Form