1. /*
  2. * @(#)LocaleElements_en.java 1.14 00/01/19
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. /*
  11. * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  12. * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  13. *
  14. * The original version of this source code and documentation
  15. * is copyrighted and owned by Taligent, Inc., a wholly-owned
  16. * subsidiary of IBM. These materials are provided under terms
  17. * of a License Agreement between Taligent and Sun. This technology
  18. * is protected by multiple US and International patents.
  19. *
  20. * This notice and attribution to Taligent may not be removed.
  21. * Taligent is a registered trademark of Taligent, Inc.
  22. *
  23. */
  24. /**
  25. *
  26. * Table of Java supplied standard locale elements
  27. *
  28. * automatically generated by java LocaleTool LocaleElements.java
  29. *
  30. * Date Created: Wed Aug 21 15:47:57 1996
  31. *
  32. * Locale Elements and Patterns: last update 10/23/96
  33. *
  34. *
  35. */
  36. // WARNING : the format of this file will change in the future!
  37. package java.text.resources;
  38. import java.util.ListResourceBundle;
  39. public class LocaleElements_en extends ListResourceBundle {
  40. /**
  41. * Overrides ListResourceBundle
  42. */
  43. public Object[][] getContents() {
  44. // This locale inherits almost everything from the root default locale. However,
  45. // even if it inherited everything, we would still need this locale to exist
  46. // to make the resource-bundle lookup mechanism work right. In that case, we'd
  47. // define this method as follows:
  48. // return new Object[][] { };
  49. return new Object[][] {
  50. { "NumberPatterns",
  51. new String[] {
  52. "#,##0.###;-#,##0.###", // decimal pattern
  53. "\u00A4#,##0.00;-\u00A4#,##0.00", // currency pattern
  54. "#,##0%" // percent pattern
  55. }
  56. }
  57. };
  58. }
  59. }