MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / startApp

Method startApp

src/org/albite/albite/AlbiteMIDlet.java:4069–4077  ·  view source on GitHub ↗

Called when MIDlet is started. Checks whether the MIDlet have been already started and initialize/starts or resumes the MIDlet.

()

Source from the content-addressed store, hash-verified

4067 * Checks whether the MIDlet have been already started and initialize/starts or resumes the MIDlet.
4068 */
4069 public final void startApp() {
4070 if (midletPaused) {
4071 resumeMIDlet();
4072 } else {
4073 initialize();
4074 startMIDlet();
4075 }
4076 midletPaused = false;
4077 }
4078
4079 /**
4080 * Called when MIDlet is paused.

Callers

nothing calls this directly

Calls 3

resumeMIDletMethod · 0.95
initializeMethod · 0.95
startMIDletMethod · 0.95

Tested by

no test coverage detected