1. /*
  2. * @(#)LocaleElements_en.java 1.14 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * @(#)LocaleElements_en.java 1.14 01/11/29
  9. *
  10. * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  11. * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  12. *
  13. * Portions copyright (c) 1997, 1998 Sun Microsystems, Inc.
  14. * All Rights Reserved.
  15. *
  16. * The original version of this source code and documentation
  17. * is copyrighted and owned by Taligent, Inc., a wholly-owned
  18. * subsidiary of IBM. These materials are provided under terms
  19. * of a License Agreement between Taligent and Sun. This technology
  20. * is protected by multiple US and International patents.
  21. *
  22. * This notice and attribution to Taligent may not be removed.
  23. * Taligent is a registered trademark of Taligent, Inc.
  24. *
  25. * Permission to use, copy, modify, and distribute this software
  26. * and its documentation for NON-COMMERCIAL purposes and without
  27. * fee is hereby granted provided that this copyright notice
  28. * appears in all copies. Please refer to the file "copyright.html"
  29. * for further important copyright and licensing information.
  30. *
  31. * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  32. * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  33. * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  34. * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  35. * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  36. * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  37. *
  38. */
  39. /**
  40. *
  41. * Table of Java supplied standard locale elements
  42. *
  43. * automatically generated by java LocaleTool LocaleElements.java
  44. *
  45. * Date Created: Wed Aug 21 15:47:57 1996
  46. *
  47. * Locale Elements and Patterns: last update 10/23/96
  48. *
  49. *
  50. */
  51. // WARNING : the format of this file will change in the future!
  52. package java.text.resources;
  53. import java.util.ListResourceBundle;
  54. public class LocaleElements_en extends ListResourceBundle {
  55. /**
  56. * Overrides ListResourceBundle
  57. */
  58. public Object[][] getContents() {
  59. // This locale inherits almost everything from the root default locale. However,
  60. // even if it inherited everything, we would still need this locale to exist
  61. // to make the resource-bundle lookup mechanism work right. In that case, we'd
  62. // define this method as follows:
  63. // return new Object[][] { };
  64. return new Object[][] {
  65. { "NumberPatterns",
  66. new String[] {
  67. "#,##0.###;-#,##0.###", // decimal pattern
  68. "\u00A4#,##0.00;-\u00A4#,##0.00", // currency pattern
  69. "#,##0%" // percent pattern
  70. }
  71. }
  72. };
  73. }
  74. }