Methods Summary |
---|
protected void | destroyApp(boolean unconditional)Standard MIDlet life-cycle call-back.
|
private Invocation | getNativeInvocation()Loads Invocation parameters.
According current implementation Invocation parameters consist of
, and command line arguments provided
for this MIDlet.
String id = getAppProperty("arg-0");
String url = getAppProperty("arg-1");
String action = getAppProperty("arg-2"); /* optional */
String type = null;
boolean responseRequired = false;
return new Invocation(url, type, id, responseRequired, action);
|
protected void | pauseApp()Standard MIDlet life-cycle call-back.
|
public void | run()Actual handler invoking is performed in the separated thread.
Invocation i = getNativeInvocation();
try {
r.invoke(i);
} catch (Throwable t) {
Logging.report(Logging.ERROR, LogChannels.LC_AMS,
"Exception during invoking native invocation: " + t);
}
notifyDestroyed();
|
protected void | startApp()Standard MIDlet life-cycle call-back.
|