javauis/lcdui_qt/src/javax/microedition/lcdui/game/MsgRepository.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 package javax.microedition.lcdui.game;
    17 package javax.microedition.lcdui.game;
    18 
    18 
    19 /**
    19 /**
    20  * Repository for text messages used in OpenLCDUI's game package. String
    20  * Repository for text messages used in OpenLCDUI's game package. String
    21  * constants in this class should begin with prefix "CLASSNAME_" where CLASSNAME
    21  * constants in this class should begin with prefix "CLASSNAME_" where CLASSNAME
    22  * is the name of the class which is using the constant.
    22  * is the name of the class which is using the constant.
    23  */
    23  */
    24 final class MsgRepository {
    24 final class MsgRepository
       
    25 {
    25 
    26 
    26     public static final String SPRITE_EXCEPTION_INVALID_WIDTH_HEIGHT =
    27     public static final String SPRITE_EXCEPTION_INVALID_WIDTH_HEIGHT =
    27         "Width and height cannot be negative";
    28         "Width and height cannot be negative";
    28 
    29 
    29     public static final String SPRITE_EXCEPTION_INVALID_SEQUENCE_LENGTH =
    30     public static final String SPRITE_EXCEPTION_INVALID_SEQUENCE_LENGTH =
    71 
    72 
    72 
    73 
    73     /**
    74     /**
    74      * Private Constructor.
    75      * Private Constructor.
    75      */
    76      */
    76     private MsgRepository() {
    77     private MsgRepository()
       
    78     {
    77     }
    79     }
    78 
    80 
    79 }
    81 }