| com.sun.jump.module.eventqueue.JUMPEventHandler
All known Subclasses: com.sun.jumpimpl.module.multimedia.MultimediaModuleImpl,
JUMPEventHandler | public interface JUMPEventHandler (Code) | | This interface represents an abstract handler for events
that come from the event queue module.
|
Method Summary | |
public void | handleEvent(int id, byte[] data) Handles a single event.
Parameters: id - event identifier, used for distinguishing variouskinds of events processed by one handler. Parameters: data - event data, may contain any information specific tothe particular event type (i.e. |
handleEvent | public void handleEvent(int id, byte[] data)(Code) | | Handles a single event.
Parameters: id - event identifier, used for distinguishing variouskinds of events processed by one handler. Parameters: data - event data, may contain any information specific tothe particular event type (i.e. to the JSR that is interestedin this type of events). |
|
|