+2003-06-17 Michael Koch <konqueror@gmx.de>
+
+ * java/util/Locale.java
+ (getDisplayLanguage): Made it final.
+ (getDisplayCountry): Likewise.
+ (getDisplayVariant): Likewise.
+ (getDisplayName): Likewise.
+
2003-06-17 Michael Koch <konqueror@gmx.de>
* java/util/PropertyResourceBundle.java:
* @return the language name of this locale localized to the default locale,
* with the ISO code as backup
*/
- public String getDisplayLanguage()
+ public final String getDisplayLanguage()
{
return getDisplayLanguage(defaultLocale);
}
* @return the country name of this locale localized to the given locale,
* with the ISO code as backup
*/
- public String getDisplayCountry()
+ public final String getDisplayCountry()
{
return getDisplayCountry(defaultLocale);
}
* @return the variant code of this locale localized to the given locale,
* with the ISO code as backup
*/
- public String getDisplayVariant()
+ public final String getDisplayVariant()
{
return getDisplayVariant(defaultLocale);
}
*
* @return String version of this locale, suitable for display to the user
*/
- public String getDisplayName()
+ public final String getDisplayName()
{
return getDisplayName(defaultLocale);
}