1. /*
  2. * @(#)DateFormatZoneData_en.java 1.14 00/07/06
  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. package java.text.resources;
  25. /**
  26. * Supplement package private date-time formatting zone data for DateFormat.
  27. * DateFormatData used in DateFormat will be initialized by loading the data
  28. * from LocaleElements and DateFormatZoneData resources. The zone data are
  29. * represented with the following form:
  30. * {ID, new String[] {ID, long zone string, short zone string, long daylight
  31. * string, short daylight string, representative city of zone}}, where ID is
  32. * NOT localized, but is used to look up the localized timezone data
  33. * internally. Localizers can localize any zone strings except
  34. * for the ID of the timezone.
  35. * Also, localizer should not touch "localPatternChars" entry.
  36. *
  37. * @see Format
  38. * @see DateFormatData
  39. * @see LocaleElements
  40. * @see SimpleDateFormat
  41. * @see TimeZone
  42. * @version 1.14, 07/06/00
  43. * @author Chen-Lieh Huang
  44. * @author Alan Liu
  45. */
  46. // US DateFormatZoneData
  47. //
  48. public final class DateFormatZoneData_en extends DateFormatZoneData
  49. {
  50. public Object[][] getContents() {
  51. return new Object[][] {
  52. {"localPatternChars", "GyMdkHmsSEDFwWahKz"},
  53. };
  54. }
  55. }