Advertisement
Chemist-i

Students_Converter_by_Chemist.java

Aug 18th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.76 KB | None | 0 0
  1. /*
  2.  * Students_Converter_by_Chemist.java
  3.  *
  4.  * Created on 20 Август 2007 �., 9:21
  5.  */
  6.  
  7. import javax.microedition.lcdui.Display;
  8. import javax.microedition.midlet.MIDlet;
  9.  
  10.  
  11. /**
  12.  * @author  Chemist
  13.  * @version 1.00
  14.  */
  15. public class Students_Converter_by_Chemist extends MIDlet {
  16.    
  17.    private canvasP myCanvas;
  18.  
  19.    public Students_Converter_by_Chemist() {
  20.        myCanvas = new canvasP(Display.getDisplay(this)) {
  21.  
  22.             public void EXIT() {
  23.                 destroyApp(false);
  24.                 notifyDestroyed();
  25.             }
  26.         };      
  27.        myCanvas.setFullScreenMode(true);
  28.     }
  29.    
  30.   public void startApp() {
  31.  
  32.   }
  33.  
  34.     public void pauseApp() {
  35.     }
  36.    
  37.   public void destroyApp(boolean unconditional) {
  38.   }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement