Facebook
From Crimson Cheetah, 5 Years ago, written in Java.
Embed
Download Paste or View Raw
Hits: 182
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package mobileapplication11;
  7.  
  8.  
  9. /**
  10.  * @author Marta
  11.  */
  12. import javax.microedition.lcdui.Display;
  13. import javax.microedition.midlet.*;
  14.  
  15.  
  16.  
  17. public class Midlet extends MIDlet {
  18.  
  19.     public void startApp() {
  20.         Display.getDisplay(this).setCurrent(new MyCanvas(this));
  21.     }
  22.  
  23.     public void pauseApp() {
  24.     }
  25.  
  26.     public void destroyApp(boolean unconditional) {
  27.     }
  28.  
  29. }