Called when MIDlet is started. Checks whether the MIDlet have been already started and initialize/starts or resumes the MIDlet.
()
| 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. |
nothing calls this directly
no test coverage detected