Package uicc.toolkit
Interface ToolkitInterface
-
- All Superinterfaces:
javacard.framework.Shareable
public interface ToolkitInterface extends javacard.framework.ShareableThis interface must be implemented by an object of a Toolkit Applet instance (which extends thejavacard.framework.Appletclass) so that it can be triggered by the Toolkit Handler according to the resgistration information. The Toolkit object will have to implement theprocessToolkitmethod so that it can be notified of the events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocessToolkit(short event)This method is the standard toolkit event handling method of a Toolkit Applet and is called by the "Triggering Entity" to process the current Toolkit event.
-
-
-
Method Detail
-
processToolkit
void processToolkit(short event) throws ToolkitExceptionThis method is the standard toolkit event handling method of a Toolkit Applet and is called by the "Triggering Entity" to process the current Toolkit event. This method is invoked for notification of registered events.- Parameters:
event- the type of event to be processed.- Throws:
ToolkitException
-
-