commit | author | age
|
2e729d
|
1 |
package brydz; |
JK |
2 |
|
|
3 |
import javax.microedition.lcdui.*; |
|
4 |
|
|
5 |
/** |
|
6 |
* |
|
7 |
*/ |
|
8 |
public class BrydzMIDlet extends javax.microedition.midlet.MIDlet { |
|
9 |
protected BrydzForm form = null; |
|
10 |
|
|
11 |
public void startApp() { |
|
12 |
if( this.form == null ) { |
|
13 |
this.form = new BrydzForm(this); |
|
14 |
} |
|
15 |
|
|
16 |
Display.getDisplay(this).setCurrent(this.form); |
|
17 |
} |
|
18 |
|
|
19 |
public void pauseApp() { |
|
20 |
this.notifyPaused(); |
|
21 |
} |
|
22 |
|
|
23 |
public void destroyApp(boolean unconditional) { |
|
24 |
this.notifyDestroyed(); |
|
25 |
} |
|
26 |
} |