javauis/tsrc/fute/lcdui/StringOutOfBounds/src/StringOutOfBounds.java
branchRCL_3
changeset 18 9ac0a0a7da70
equal deleted inserted replaced
17:0fd27995241b 18:9ac0a0a7da70
       
     1 /*
       
     2 * Copyright (c) 2003-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 /**
       
    19  * import midp classes.
       
    20  */
       
    21 import javax.microedition.midlet.*;
       
    22 
       
    23 /**
       
    24  * This is the main class for StringOutOfBounds tests.
       
    25  *
       
    26  */
       
    27 
       
    28 public class StringOutOfBounds extends MIDlet
       
    29 {
       
    30 
       
    31     /**
       
    32      * Signals the MIDlet to start and enter the Active state.
       
    33      */
       
    34     protected void startApp()
       
    35     {
       
    36         new FormStringItemTests(this);
       
    37     }
       
    38 
       
    39     /**
       
    40      *  Signals the MIDlet to terminate and enter the Destroyed state.
       
    41      *
       
    42      */
       
    43     protected void destroyApp(boolean unconditional)
       
    44     {
       
    45         System.out.println("destroyApp is called");
       
    46     }
       
    47 
       
    48     /**
       
    49      *  Signals the MIDlet to stop and enter the Paused state.
       
    50      */
       
    51     protected void pauseApp()
       
    52     {
       
    53     }
       
    54 }
       
    55