Uses of Interface
textbender.g.util.CollectionListener

Packages that use CollectionListener
textbender.g.util Java utility related code 
 

Uses of CollectionListener in textbender.g.util
 

Classes in textbender.g.util that implement CollectionListener
 class CollectionRelayer<E>
          Relayer of collection events to listeners.
 class CollectionRelayerLL<E>
          Relayer of collection events, with a collection of listeners that is guarded by a lock.
 

Methods in textbender.g.util that return types with arguments of type CollectionListener
protected  Collection<CollectionListener<E>> CollectionRelayerLL.listenersCopy()
           
protected  Collection<CollectionListener<E>> CollectionRelayer.listenersCopy()
          Returns a copy of the listener collection.
 

Methods in textbender.g.util with parameters of type CollectionListener
 void CollectionListener.Registry.addCollectionListener(CollectionListener<E> listener)
          Registers a listener to receive collection events.
 void CollectionListener.Registry.removeCollectionListener(CollectionListener<E> listener)
          Unregisters a previously registered collection listener.
 

Constructor parameters in textbender.g.util with type arguments of type CollectionListener
CollectionRelayer(Collection<CollectionListener<E>> listeners)
          Creates a CollectionRelayer.
CollectionRelayerLL(Collection<CollectionListener<E>> listeners, Object listenersLock)
          Creates a CollectionRelayerLL.