Uses of Interface
org.fishbolt.common.listener.IEvent

Packages that use IEvent
org.fishbolt.common.listener The Listener Pattern. 
org.fishbolt.common.listener.ext The Listener Pattern. 
 

Uses of IEvent in org.fishbolt.common.listener
 

Method parameters in org.fishbolt.common.listener with type arguments of type IEvent
 void IEventListener.eventsPerformed(java.util.Collection<IEvent<S,T>> events)
          After the change happened, the system generates the events and notifies the connected listeners calling the method.
 

Uses of IEvent in org.fishbolt.common.listener.ext
 

Classes in org.fishbolt.common.listener.ext that implement IEvent
 class Event<S,T>
          An event is being created by the system before notifying the listeners.
 

Methods in org.fishbolt.common.listener.ext with parameters of type IEvent
protected abstract  void EventListener.eventPerformed(IEvent<S,T> event)
          Notifies about the change in system.
 

Method parameters in org.fishbolt.common.listener.ext with type arguments of type IEvent
 void EventListener.eventsPerformed(java.util.Collection<IEvent<S,T>> events)