📄 res.java
字号:
/**
* Copyright (c) 1996-2004 Borland Software Corporation. All Rights Reserved.
*
* This SOURCE CODE FILE, which has been provided by Borland Software as part
* of a Borland Software product for use ONLY by licensed users of the product,
* includes CONFIDENTIAL and PROPRIETARY information of Borland Software.
*
* USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS
* OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
* THE PRODUCT.
*
* IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND SOFTWARE, ITS
* RELATED COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY
* CLAIMS OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR
* DISTRIBUTION OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES
* ARISING OUT OF OR RESULTING FROM THE USE, MODIFICATION, OR
* DISTRIBUTION OF PROGRAMS OR FILES CREATED FROM, BASED ON, AND/OR
* DERIVED FROM THIS SOURCE CODE FILE.
*/
//------------------------------------------------------------------------------
// Copyright (c) 1996-2004 Borland Software Corporation. All Rights Reserved.
//------------------------------------------------------------------------------
package com.borland.samples.creditapproval.client;
import java.util.*;
/**
*ResourceBundles are the standard JDK 1.1 mechanism to allow an application to
*respond to different user locale environments. Locale dependent resources,
*such as messages, are isolated into ResourceBundles, separate from the code
*that will be universal among locales. With a single set of class files, the
*language of menus and messages of an application can change depending on
*whether it is run in the United States or Japan.
*Because resource bundles are loaded dynamically at runtime, it is not
*possible at compile time to know which resource bundles need to be recompiled.
*Thus in order to see changes you make to this file updated in the application,
*you must explicitly recompile this file whenever you make a change to it.
*/
public class Res extends ListResourceBundle {
static final Object[][] contents = {
{"Congratulations","Congratulations!"},
{"You_have_been_approved","You have been approved for a Cliffhanger Credit Card. Please make a note of the following information. A permanent card will be sent to you in the mail."},
{"Credit_Card_Number","Credit Card Number:"},
{"Expiration_Date","Expiration Date:"},
{"Credit_Limit","Credit Limit:"},
{"Sorry!","Sorry!"},
{"You_have_been_denied","Your application for a Cliffhanger Credit Card has been denied for the following reason:"},
{"OK","OK"},
{"Credit_Card","Credit Card Application"},
{"Personal_Information","Personal Information"},
{"First","First"},
{"Last","Last"},
{"MI","MI"},
{"Address_1","Address 1:"},
{"Address_2","Address 2:"},
{"Name","Name:"},
{"Personal_ID","Personal ID #:"},
{"City_State_PostalCode","City/State/Zip:"},
{"Rent_Mortgage_Payment","Rent/Mortgage Payment:"},
{"Clear","Clear"},
{"Financial_Information","Financial Information"},
{"Required_Field","Required Field Missing"},
{"Submit","Submit"},
{"Monthly_Income","Monthly Income:"},
{"DOB","DOB:"},
{"Identification","Identification:"},
{"Phone","Phone:"},
{"Country","Country:"},
{"DobEditMask","MM/dd/yy"},
{"Please_enter_a_value","Please enter a value in this field"},
{"Connecting_to_Server","Connecting to Server..."},
{"Server_Down","The server is not currently running."},
{"System_Error","System Error"},
{"Error_during_processing","The following System Error occurred during the processing of your application:"},};
public Object[][] getContents() {
return contents;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -