Package com.db4o.events
Interface Event4<T extends EventArgs>
- 
- All Known Implementing Classes:
- Event4Impl,- EventRegistryImpl.CommittedEvent
 
 public interface Event4<T extends EventArgs>An event. Holds a list ofEventListener4objects which receiveEventListener4.onEvent(Event4, EventArgs)notifications whenever this event is triggered.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(EventListener4<T> listener)Adds a new listener to the notification list..voidremoveListener(EventListener4<T> listener)Removes a previously registered listener from the notification list.
 
- 
- 
- 
Method Detail- 
addListenervoid addListener(EventListener4<T> listener) Adds a new listener to the notification list..
 - 
removeListenervoid removeListener(EventListener4<T> listener) Removes a previously registered listener from the notification list.
 
- 
 
-