/*
* 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 wmafw;
/**
* This class contains all the UI related constants such as text messages.
*/
public interface UIConstants {
/************/
/* Strings */
/************/
public static final String TXT_NAME = "Name";
public static final String TXT_NICKNAME = "Nickname";
public static final String TXT_PHONE = "Phone #";
public static final String TXT_COMMENTS = "Comments";
public static final String TXT_TO = "To:";
public static final String TXT_MESSAGE = "Message:";
public static final String TXT_EXIT = "Exit";
public static final String TXT_SELECT = "Select";
public static final String TXT_SEND = "Send";
public static final String TXT_BACK = "Back";
public static final String TXT_NEW_MESSAGE = "New Message";
public static final String TXT_VIEW = "View";
public static final String TXT_COMPOSE = "Compose";
public static final String TXT_RESET = "Reset";
public static final String TXT_SMS_INBOX = "Short Message Inbox";
public static final String TXT_SMS_SUMM = "Message Summary";
public static final String TXT_FROM = "From: ";
public static final String TXT_REPLY = "Reply";
/**********/
/* Images */
/**********/
public static final String IMG_ROOT = "/";
public static final String EMAIL_IMG = "/email.png";
public static final String CAL_IMG = "/cal.png";
public static final String CONTACTS_IMG = "/contacts.png";
}
|