Uses of Class
edu.rice.cs.plt.collect.DelegatingCollection

Packages that use DelegatingCollection
edu.rice.cs.plt.collect Contains general-purpose extensions to and variations on the java.util collections framework. 
 

Uses of DelegatingCollection in edu.rice.cs.plt.collect
 

Subclasses of DelegatingCollection in edu.rice.cs.plt.collect
 class DelegatingList<E>
          An implementation of List that delegates all operations to a wrapped list.
 class DelegatingRelation<T1,T2>
          A relation that delegates all operations to a wrapped relation.
 class DelegatingSet<T>
          An implementation of PredicateSet that delegates all operations to a wrapped set.
 class ImmutableRelation<T1,T2>
          Wraps a relation in an immutable interface.
 class ListenerSet<T>
          A mutable set of listeners.
 class SnapshotSynchronizedList<E>
          A synchronized list like Collections.synchronizedList(java.util.List), but one that returns a snapshot of the list contents on invocations of iterator().
 class SnapshotSynchronizedSet<E>
          A synchronized set like Collections.synchronizedSet(java.util.Set), but one that returns a snapshot of the set contents on invocations of iterator().