Package de.sciss.app
Interface EventManager.Processor
-
- All Known Implementing Classes:
AbstractDocumentHandler,BasicPathField,Jog,LaterInvocationManager,NumberField,ParamField,PathButton,PathField,PrefNumberField,PrefParamField,PrefPathField,ProcessingThread
- Enclosing class:
- EventManager
public static interface EventManager.ProcessorCallers of the EventManager constructor must provide an object implementing this interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessEvent(BasicEvent e)Processes the next event in the queue.
-
-
-
Method Detail
-
processEvent
void processEvent(BasicEvent e)
Processes the next event in the queue. This gets called in the event thread. Usually implementing classes should loop through all listeners by calling elm.countListeners() and elm.getListener(), and invoke specific dispatching methods on these listeners.
-
-