com.zwares.base.event
Interface EEventSource

All Known Implementing Classes:
EEventSourceObject

public interface EEventSource

Event Source interface that must be implemented by all event generating classes.


Method Summary
 void addEventListener(EEventListener el)
          Adds an EEventListener to the list of listners.
 void notifyEventListeners(EEvent evt)
          Notifies all the registered listeners about the event evt.
 void removeEventListener(EEventListener el)
          Removes the specified EEventListener from the list of listeners.
 

Method Detail

addEventListener

public void addEventListener(EEventListener el)
Adds an EEventListener to the list of listners.


removeEventListener

public void removeEventListener(EEventListener el)
Removes the specified EEventListener from the list of listeners.


notifyEventListeners

public void notifyEventListeners(EEvent evt)
Notifies all the registered listeners about the event evt.