package brydz; import javax.microedition.lcdui.*; /** * */ public class BrydzMIDlet extends javax.microedition.midlet.MIDlet { protected BrydzForm form = null; public void startApp() { if( this.form == null ) { this.form = new BrydzForm(this); } Display.getDisplay(this).setCurrent(this.form); } public void pauseApp() { this.notifyPaused(); } public void destroyApp(boolean unconditional) { this.notifyDestroyed(); } }