Uses of Interface
com.sdm.quasar.client.swing.common.event.EventLoop.EventFilter

Packages that use EventLoop.EventFilter
com.sdm.quasar.client.swing.common.event   
 

Uses of EventLoop.EventFilter in com.sdm.quasar.client.swing.common.event
 

Methods in com.sdm.quasar.client.swing.common.event that return EventLoop.EventFilter
 EventLoop.EventFilter EventLoop.getRunCondition()
           
 

Methods in com.sdm.quasar.client.swing.common.event with parameters of type EventLoop.EventFilter
static void EventLoop.processEvents(EventLoop.EventFilter runCondition, EventLoop.EventFilter eventFilter)
          This method does the event processing of the system event queue until the run condition does no more accept events.
static void EventLoop.processEvents(EventLoop.EventFilter runCondition, EventLoop.EventFilter eventFilter, EventLoop.ExceptionHandler exceptionHandler)
          This method does the event processing of the system event queue until the run condition does no more accept events.
 void EventLoop.addEventFilter(EventLoop.EventFilter event_filter)
          Adds the EventLoop.EventFilter used to filter dispatched events.
 void EventLoop.removeEventFilter(EventLoop.EventFilter event_filter)
          Removes a previously added EventLoop.EventFilter from the EventLoop.
 void EventLoop.setRunCondition(EventLoop.EventFilter runCondition)
          Sets the EventLoop.EventFilter which accepts events as long as the loop runs.