FileDocCategorySizeDatePackage
UIConstants.javaAPI DocWireless Messaging API2553Thu Oct 09 23:11:26 BST 2003wmasample

UIConstants.java

/*
 *  UIConstants.java
 *
 *  Author: C. Enrique Ortiz, October 2003
 *
 *  Companion source code to "Advanced Messaging Coding with JSR 120".
 *
 *  Based on original work by C. Enrique Ortiz.
 *
 *  COPYRIGHT All rights reserved Sony Ericsson Mobile Communications AB 2003.
 *  The software is the copyrighted work of Sony Ericsson Mobile Communications AB.
 *  The use of the software is subject to the terms of the end-user license
 *  agreement which accompanies or is included with the software. The software is
 *  provided "as is" and Sony Ericsson specifically disclaim any warranty or
 *  condition whatsoever regarding merchantability or fitness for a specific
 *  purpose, title or non-infringement. No warranty of any kind is made in
 *  relation to the condition, suitability, availability, accuracy, reliability,
 *  merchantability and/or non-infringement of the software provided herein.
 */

package wmasample;

/**
 * This class contains all the UI related constants such as text messages.
 */
public interface UIConstants {

    /************/
    /*  Strings */
    /************/
    public static final String MSG_NI                   = "Not Implemented...";
    public static final String MSG_CALENDAR_TBI         = "Calendar Function Not Implemented...";
    public static final String MSG_CONTACTS_TBI         = "Contacts Function Not Implemented...";
    public static final String MSG_ERROR_LOADING_IMG    = "Error loading image";

    public static final String TXT_SHORT_MESSAGES       = "Short Messages";
    public static final String TXT_CALENDAR             = "Calendar";
    public static final String TXT_CONTACTS             = "Contacts";
    public static final String TXT_EXIT                 = "Exit";
    public static final String TXT_SELECT               = "Select";
    public static final String TXT_MAIN_MENU            = "Main Menu";
    public static final String TXT_ACTIVE_SMSC          = "Active SMSC: ";
    public static final String TXT_ERROR_STARTING       = "Error Starting ";
    public static final String TXT_NEW_TEXT_MSG         = "New text message from: ";
    public static final String TXT_NEW_BIN_MSG          = "New binary message from: ";

    /**********/
    /* Images */
    /**********/
    public static final String IMG_ROOT     = "/icons";
    public static final String EMAIL_IMG    = "/email.png";
    public static final String CAL_IMG      = "/cal.png";
    public static final String CONTACTS_IMG = "/contacts.png";

}