Uses of Class
org.openbandy.event.Event

Packages that use Event
org.openbandy.event   
org.openbandy.example.test   
org.openbandy.net.client   
org.openbandy.service   
 

Uses of Event in org.openbandy.event
 

Methods in org.openbandy.event with parameters of type Event
 void EventSink.absorb(Event event)
          This method is called by the EventService whenever it has an event this sink subscribed for.
 void EventDispatcher.dispatchEvent(Event event)
          Dispatch the given event to all registered event sinks.
 void EventFilter.filter(Event event)
          Absorb the event, filter it and eventually forward the event to the corresponding EventSink.
 

Constructors in org.openbandy.event with parameters of type Event
EventDispatcherThread(Event event, java.util.Enumeration eventSinks, java.util.Hashtable eventFilters)
           
 

Uses of Event in org.openbandy.example.test
 

Subclasses of Event in org.openbandy.example.test
 class TestEvent
          A simple example of an event.
 

Methods in org.openbandy.example.test with parameters of type Event
 void EventServiceTest.absorb(Event event)
           
 

Uses of Event in org.openbandy.net.client
 

Subclasses of Event in org.openbandy.net.client
 class IncomingMessageEvent
          This Event reports the reception of a Message at the MessageScanner.
 

Uses of Event in org.openbandy.service
 

Methods in org.openbandy.service with parameters of type Event
static void EventService.dispatch(Event event)
          This methods forwards the provided Event to every EventSink that has been registered for this type of Event.