Recently Sun/Oracle changed currency code for Ukrainian hrivna to incorrect one and I've to fix that in my code.
I find out that Java 6 should allows me to do that at Java level (details are here) via CurrencyNameProvider (see also).
Unfortunately I don't understand which locales should return method
public Locale[] getAvailableLocales() {}
Any working examples are welcome!
LocaleServiceProvider:
Locale sensitive factory methods and methods for name retrieval in the java.text and java.util packages invoke service provider methods when needed to support the requested locale. The methods first check whether the Java runtime environment itself supports the requested locale, and use its support if available. Otherwise, they call the getAvailableLocales() methods of installed providers for the appropriate interface to find one that supports the requested locale.
So if the JRE has support for the requested Locale, you cannot override it with a custom provider in your extension, because the default providers will be asked first.
Example, which tries to provide a new symbol for
UAH
for Localexx_YY
BungaBunga anduk_UA
ungarn$$$ :}
The code
will output
because the standard JRE knows about uk_UA and will provide its already known currency symbol грл.. For xx_YY the JRE has none information and will ask the providers in the extension. The custom provider will return BungaBunga.