author | sherman |
Tue, 12 Feb 2013 09:25:43 -0800 | |
changeset 15658 | 55b829ca2334 |
parent 15260 | 7af2d7a87806 |
child 23010 | 6dadb192ad81 |
permissions | -rw-r--r-- |
13583 | 1 |
/* |
2 |
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Oracle designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Oracle in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
24 |
*/ |
|
25 |
||
26 |
package sun.util.locale.provider; |
|
27 |
||
28 |
import java.util.Locale; |
|
29 |
import java.util.Set; |
|
30 |
import java.util.TimeZone; |
|
31 |
import java.util.spi.TimeZoneNameProvider; |
|
32 |
||
33 |
/** |
|
34 |
* Concrete implementation of the |
|
35 |
* {@link java.util.spi.TimeZoneNameProvider TimeZoneNameProvider} class |
|
36 |
* for the JRE LocaleProviderAdapter. |
|
37 |
* |
|
38 |
* @author Naoto Sato |
|
39 |
* @author Masayoshi Okutsu |
|
40 |
*/ |
|
41 |
public class TimeZoneNameProviderImpl extends TimeZoneNameProvider { |
|
42 |
private final LocaleProviderAdapter.Type type; |
|
43 |
private final Set<String> langtags; |
|
44 |
||
45 |
TimeZoneNameProviderImpl(LocaleProviderAdapter.Type type, Set<String> langtags) { |
|
46 |
this.type = type; |
|
47 |
this.langtags = langtags; |
|
48 |
} |
|
49 |
||
50 |
/** |
|
51 |
* Returns an array of all locales for which this locale service provider |
|
52 |
* can provide localized objects or names. |
|
53 |
* |
|
54 |
* @return An array of all locales for which this locale service provider |
|
55 |
* can provide localized objects or names. |
|
56 |
*/ |
|
57 |
@Override |
|
58 |
public Locale[] getAvailableLocales() { |
|
59 |
return LocaleProviderAdapter.toLocaleArray(langtags); |
|
60 |
} |
|
61 |
||
62 |
@Override |
|
63 |
public boolean isSupportedLocale(Locale locale) { |
|
64 |
return LocaleProviderAdapter.isSupportedLocale(locale, type, langtags); |
|
65 |
} |
|
66 |
||
67 |
/** |
|
68 |
* Returns a name for the given time zone ID that's suitable for |
|
69 |
* presentation to the user in the specified locale. The given time |
|
70 |
* zone ID is "GMT" or one of the names defined using "Zone" entries |
|
71 |
* in the "tz database", a public domain time zone database at |
|
72 |
* <a href="ftp://elsie.nci.nih.gov/pub/">ftp://elsie.nci.nih.gov/pub/</a>. |
|
73 |
* The data of this database is contained in a file whose name starts with |
|
74 |
* "tzdata", and the specification of the data format is part of the zic.8 |
|
75 |
* man page, which is contained in a file whose name starts with "tzcode". |
|
76 |
* <p> |
|
77 |
* If <code>daylight</code> is true, the method should return a name |
|
78 |
* appropriate for daylight saving time even if the specified time zone |
|
79 |
* has not observed daylight saving time in the past. |
|
80 |
* |
|
81 |
* @param ID a time zone ID string |
|
82 |
* @param daylight if true, return the daylight saving name. |
|
83 |
* @param style either {@link java.util.TimeZone#LONG TimeZone.LONG} or |
|
84 |
* {@link java.util.TimeZone#SHORT TimeZone.SHORT} |
|
85 |
* @param locale the desired locale |
|
86 |
* @return the human-readable name of the given time zone in the |
|
87 |
* given locale, or null if it's not available. |
|
88 |
* @exception IllegalArgumentException if <code>style</code> is invalid, |
|
89 |
* or <code>locale</code> isn't one of the locales returned from |
|
90 |
* {@link java.util.spi.LocaleServiceProvider#getAvailableLocales() |
|
91 |
* getAvailableLocales()}. |
|
92 |
* @exception NullPointerException if <code>ID</code> or <code>locale</code> |
|
93 |
* is null |
|
94 |
* @see java.util.TimeZone#getDisplayName(boolean, int, java.util.Locale) |
|
95 |
*/ |
|
96 |
@Override |
|
97 |
public String getDisplayName(String id, boolean daylight, int style, Locale locale) { |
|
14765
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
98 |
String[] names = getDisplayNameArray(id, 5, locale); |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
99 |
if (names != null) { |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
100 |
int index = daylight ? 3 : 1; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
101 |
if (style == TimeZone.SHORT) { |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
102 |
index++; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
103 |
} |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
104 |
return names[index]; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
105 |
} |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
106 |
return null; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
107 |
} |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
108 |
|
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
109 |
@Override |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
110 |
public String getGenericDisplayName(String id, int style, Locale locale) { |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
111 |
String[] names = getDisplayNameArray(id, 7, locale); |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
112 |
if (names != null && names.length >= 7) { |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
113 |
return names[(style == TimeZone.LONG) ? 5 : 6]; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
114 |
} |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
115 |
return null; |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
116 |
} |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
117 |
|
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
118 |
private String[] getDisplayNameArray(String id, int n, Locale locale) { |
13583 | 119 |
if (id == null || locale == null) { |
120 |
throw new NullPointerException(); |
|
121 |
} |
|
15260 | 122 |
return LocaleProviderAdapter.forType(type).getLocaleResources(locale).getTimeZoneNames(id, n); |
14765
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
123 |
} |
13583 | 124 |
|
14765
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
125 |
/** |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
126 |
* Returns a String[][] as the DateFormatSymbols.getZoneStrings() value for |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
127 |
* the given locale. This method is package private. |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
128 |
* |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
129 |
* @param locale a Locale for time zone names |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
130 |
* @return an array of time zone names arrays |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
131 |
*/ |
0987999ed367
8000983: Support narrow display names for calendar fields
okutsu
parents:
14185
diff
changeset
|
132 |
String[][] getZoneStrings(Locale locale) { |
15260 | 133 |
return LocaleProviderAdapter.forType(type).getLocaleResources(locale).getZoneStrings(); |
13583 | 134 |
} |
135 |
} |