com.intel.util
Class EventClient
- java.lang.Object
-
- com.intel.util.EventClient
-
public abstract class EventClient extends java.lang.Object
This class should be implemented by the applet and registered with theEventManager
using theregister
method in order to receive event notifications from other applets. Theprocess
method implemented by the applet will be called by the system when an event is posted for this applet.
-
-
Constructor Summary
Constructors Constructor and Description EventClient()
-
Method Summary
Methods Modifier and Type Method and Description abstract void
process(AppletEvent event)
The method will be invoked by the system when an event, for which thisEventClient
has registered, is posted.
-
-
-
Method Detail
-
process
public abstract void process(AppletEvent event)
The method will be invoked by the system when an event, for which thisEventClient
has registered, is posted.- Parameters:
An
- event object used for retrieving event data. Note: the value of this variable can be null. When the event returns null an error occurred during the dispatch of the event.
-
-