Uses of Interface
org.bushe.swing.event.EventService

Packages that use EventService
org.bushe.swing.event The EventBus provides publish/subscribe event services for a single JVM. 
org.bushe.swing.event.annotation   
 

Uses of EventService in org.bushe.swing.event
 

Classes in org.bushe.swing.event that implement EventService
 class SwingEventService
          An EventService implementation for Swing.
 class ThreadSafeEventService
          A thread-safe EventService implementation.
 

Methods in org.bushe.swing.event that return EventService
 EventService ContainerEventServiceRegistrar.getContainerEventService()
           
 EventService ContainerEventServiceSupplier.getContainerEventService()
           
protected  EventService ContainerEventServiceAction.getEventService(java.awt.event.ActionEvent event)
           
protected  EventService EventBusAction.getEventService(java.awt.event.ActionEvent event)
           
protected abstract  EventService EventServiceAction.getEventService(java.awt.event.ActionEvent event)
          Override to return the EventService on which to publish.
static EventService ContainerEventServiceFinder.getEventService(java.awt.Component component)
          Walks the component's parents until it find an ContainerEventServiceSupplier and returns the suppier's EventService.
static EventService EventServiceLocator.getEventService(java.lang.String serviceName)
           
static EventService EventBus.getGlobalEventService()
          The EventBus uses a global static EventService.
static EventService EventServiceLocator.getSwingEventService()
           
 

Methods in org.bushe.swing.event with parameters of type EventService
static void EventServiceLocator.setEventService(java.lang.String serviceName, EventService es)
          Add a named EventService to the locator.
 

Uses of EventService in org.bushe.swing.event.annotation
 

Methods in org.bushe.swing.event.annotation that return EventService
 EventService AbstractProxySubscriber.getEventService()
           
 

Constructors in org.bushe.swing.event.annotation with parameters of type EventService
AbstractProxySubscriber(java.lang.Object proxiedSubscriber, java.lang.reflect.Method subscriptionMethod, ReferenceStrength referenceStrength, EventService es)
           
BaseProxySubscriber(java.lang.Object proxiedSubscriber, java.lang.reflect.Method subscriptionMethod, ReferenceStrength referenceStrength, EventService es, java.lang.Class subscription)
          Creates a proxy.
ProxyTopicPatternSubscriber(java.lang.Object proxiedSubscriber, java.lang.reflect.Method subscriptionMethod, ReferenceStrength referenceStrength, EventService es, java.lang.String patternString, java.util.regex.Pattern pattern)
          Creates a proxy.
ProxyTopicSubscriber(java.lang.Object proxiedSubscriber, java.lang.reflect.Method subscriptionMethod, ReferenceStrength referenceStrength, EventService es, java.lang.String topic)
          Creates a proxy.