Class SynchronizedSortedBag<T>

All Implemented Interfaces:
Serializable, Cloneable, Comparable<SortedBag<T>>, Iterable<T>, Collection<T>, Bag<T>, MutableBagIterable<T>, MutableSortedBag<T>, SortedBag<T>, MutableCollection<T>, InternalIterable<T>, OrderedIterable<T>, ReversibleIterable<T>, SortedIterable<T>, RichIterable<T>

public class SynchronizedSortedBag<T>
extends AbstractSynchronizedMutableCollection<T>
implements MutableSortedBag<T>, Serializable
A synchronized view of a MutableSortedBag. 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:
MutableSortedBag.asSynchronized(), Serialized Form