javauis/lcdui_qt/src_j2se/javax/microedition/midlet/MIDlet.java
changeset 23 98ccebc37403
parent 21 2a9601315dfc
equal deleted inserted replaced
21:2a9601315dfc 23:98ccebc37403
     9 * Initial Contributors:
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    10 * Nokia Corporation - initial contribution.
    11 *
    11 *
    12 * Contributors:
    12 * Contributors:
    13 *
    13 *
    14 * Description: 
    14 * Description:
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 package javax.microedition.midlet;
    18 package javax.microedition.midlet;
    19 
    19 
    20 public abstract class MIDlet {
    20 public abstract class MIDlet
    21     
    21 {
       
    22 
    22     protected abstract void destroyApp(boolean unconditional) throws MIDletStateChangeException;
    23     protected abstract void destroyApp(boolean unconditional) throws MIDletStateChangeException;
    23     protected abstract void pauseApp();
    24     protected abstract void pauseApp();
    24     protected abstract void startApp() throws MIDletStateChangeException;
    25     protected abstract void startApp() throws MIDletStateChangeException;
    25 
    26 
    26 }
    27 }