org.bushe.swing.event
Interface EventServiceEvent

All Known Implementing Classes:
AbstractEventServiceEvent, ObjectEvent, SubscriberTimingEvent

public interface EventServiceEvent

Convenience interface for events that get processed by the EventService, its usage is not required in any way. Any object can be published on an EventService or on the EventBus.

It is a good practice to specify the source of the event when using pub/sub, especially in Swing applications.

Author:
Michael Bushe michael@bushe.com
See Also:
for a simple base class

Method Summary
 java.lang.Object getSource()
           
 

Method Detail

getSource

java.lang.Object getSource()
Returns:
The issuer of the event.