public class ObjectRemovalEvent
extends java.util.EventObject
An ObjectRemovalEvent is an event that is propagated to
certain event listeners when an object is removed from some kind of
a store or data structure. For instance, the LRUMap
class supports
this event through its LRUMap.addRemovalListener(org.clapper.util.misc.ObjectRemovalListener, boolean)
method.
Constructor and Description |
---|
ObjectRemovalEvent(java.lang.Object source)
Construct a ObjectRemovalEvent event to announce the removal
of an object from a data store.
|