896897898899900901902903904905906
* Called when MIDlet is started. * Checks whether the MIDlet have been already started and initialize/starts or resumes the MIDlet. */ public void startApp() { if (facade == null) { facade = new TweeterFacade(); } if (midletPaused) { resumeMIDlet(); } else { initialize();
12041205120612071208120912101211121212131214
* Called when MIDlet is started. * Checks whether the MIDlet have been already started and initialize/starts or resumes the MIDlet. */ public void startApp() { if (facade == null) { facade = new TweeterFacade(); } if (midletPaused) { resumeMIDlet(); } else {