com.intel.util
Class EventClient
java.lang.Objectcom.intel.util.EventClient
public abstract class EventClient
- extends java.lang.Object
This class should be implemented by the applet and registered with the EventManager
using the register
method in order to receive event notifications from other applets.
The process
method implemented by the applet will be called by the system when an
event is posted for this applet.
Constructor Summary | |
---|---|
EventClient()
|
Method Summary | |
---|---|
abstract void |
process(AppletEvent event)
The method will be invoked by the system when an event, for which this EventClient has registered, is posted. |
Methods inherited from class java.lang.Object |
---|
equals, hashCode, toString |
Constructor Detail |
---|
EventClient
public EventClient()
Method Detail |
---|
process
public abstract void process(AppletEvent event)
- The method will be invoked by the system when an event, for which this
EventClient
has registered, is posted.- Parameters:
event
- Event object that should be used for retrieval of the event data.