home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / jbuilder / TRIAL / JBUILDER / JVISBRKR.Z / Res.java < prev    next >
Encoding:
Java Source  |  1998-05-08  |  3.9 KB  |  93 lines

  1. /*
  2.  * Copyright (c) 1997-1998 Borland International, Inc. All Rights Reserved.
  3.  * 
  4.  * This SOURCE CODE FILE, which has been provided by Borland as part
  5.  * of a Borland product for use ONLY by licensed users of the product,
  6.  * includes CONFIDENTIAL and PROPRIETARY information of Borland.  
  7.  *
  8.  * USE OF THIS SOFTWARE IS GOVERNED BY THE TERMS AND CONDITIONS 
  9.  * OF THE LICENSE STATEMENT AND LIMITED WARRANTY FURNISHED WITH
  10.  * THE PRODUCT.
  11.  *
  12.  * IN PARTICULAR, YOU WILL INDEMNIFY AND HOLD BORLAND, ITS RELATED
  13.  * COMPANIES AND ITS SUPPLIERS, HARMLESS FROM AND AGAINST ANY CLAIMS
  14.  * OR LIABILITIES ARISING OUT OF THE USE, REPRODUCTION, OR DISTRIBUTION
  15.  * OF YOUR PROGRAMS, INCLUDING ANY CLAIMS OR LIABILITIES ARISING OUT OF
  16.  * OR RESULTING FROM THE USE, MODIFICATION, OR DISTRIBUTION OF PROGRAMS
  17.  * OR FILES CREATED FROM, BASED ON, AND/OR DERIVED FROM THIS SOURCE
  18.  * CODE FILE.
  19.  */
  20. //--------------------------------------------------------------------------------------------------
  21. // CORBA Reference Application
  22. // Copyright (c) 1997 by Borland International, All Rights Reserved
  23. //
  24. // Generated by the Resource Strings Wizard
  25. //--------------------------------------------------------------------------------------------------
  26.  
  27. package borland.reference.creditapproval.client;
  28.  
  29. import java.util.*;
  30.  
  31. /*
  32.  ResourceBundles are the standard JDK 1.1 mechanism to allow an application to
  33.  respond to different user locale environments. Locale dependent resources,
  34.  such as messages, are isolated into ResourceBundles, separate from the code
  35.  that will be universal among locales. With a single set of class files, the
  36.  language of menus and messages of an application can change depending on
  37.  whether it is run in the United States or Japan.
  38.  
  39.  Because resource bundles are loaded dynamically at runtime, it is not
  40.  possible at compile time to know which resource bundles need to be recompiled.
  41.  Thus in order to see changes you make to this file updated in the application,
  42.  you must explicitly recompile this file whenever you make a change to it.
  43.  
  44. */
  45.  
  46. public class Res extends ListResourceBundle {
  47.   static final Object[][] contents = {
  48. {"Congratulations","Congratulations!"},
  49.      {"You_have_been","You have been approved for a Cliffhanger Credit Card."},
  50.      {"Please_make_a_note_of","Please make a note of the following information."},
  51.      {"Apermanent_card_will","A permanent card will be sent to you in the mail."},
  52.      {"Credit_Card_Number","Credit Card Number"},
  53.      {"Expiration_Date","Expiration Date"},
  54.      {"Credit_Limit","Credit Limit"},
  55.      {"Sorry!","Sorry!"},
  56.      {"Your_application_for","Your application for a Cliffhanger Credit Card has"},
  57.      {"been_denied_for_the","been denied for the following reason"},
  58.      {"OK","OK"},
  59.      {"Credit_Card","Credit Card Application"},
  60.      {"Personal_Information","Personal Information"},
  61.      {"First","First"},
  62.      {"Last","Last"},
  63.      {"MI","MI"},
  64.      {"Address_1","Address 1"},
  65.      {"Address_2","Address 2"},
  66.      {"Name","Name"},
  67.      {"Personal_ID","Personal ID #"},
  68.      {"City","City"},
  69.      {"Rent_Mortgage_Payment","Rent/Mortgage Payment"},
  70.      {"Clear","Clear"},
  71.      {"Financial_Information","Financial Information"},
  72.      {"Required_Field","Required Field Missing"},
  73.      {"Submit","Submit"},
  74.      {"Monthly_Income","Monthly Income"},
  75.      {"DOB","DOB"},
  76.      {"Identification","Identification"},
  77.      {"Phone","Phone"},
  78.      {"Country","Country"},
  79.      {"Postal_Code","Postal Code"},
  80.      {"State","State"},
  81.      {"DobEditMask","MM/dd/yy"},     
  82.      {"Please_enter_a_value","Please enter a value for"},
  83.      {"Connecting_to_Server","Connecting to Server"},
  84.      {"Server_Down","The server is not currently running."},
  85.      {"System_Error","System Error"},
  86.      {"The_following_System","The following System Error occurred during"},
  87.      {"the_processing_of","the processing of your application."},};
  88.  
  89.   public Object[][] getContents() {
  90.     return contents;
  91.   }
  92. }
  93.