Obliczenia brydżowe (Java ME)
Jacek Kowalski
2012-08-04 2e729deb8e4167cfccdd250a1e407acf824c31e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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();
    }
}