javax.accessibility
abstract public class: AccessibleBundle [javadoc |
source]
java.lang.Object
javax.accessibility.AccessibleBundle
Direct Known Subclasses:
AccessibleRelation, AccessibleState, AccessibleRole
Base class used to maintain a strongly typed enumeration. This is
the superclass of AccessibleState and AccessibleRole .
The toDisplayString method allows you to obtain the localized string
for a locale independent key from a predefined ResourceBundle for the
keys defined in this class. This localized string is intended to be
readable by humans.
| Field Summary |
|---|
| protected String | key | The locale independent name of the state. This is a programmatic
name that is not intended to be read by humans. |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.accessibility.AccessibleBundle Detail: |
public String toDisplayString() {
return toDisplayString(Locale.getDefault());
}
Gets localized string describing the key using the default locale. |
public String toDisplayString(Locale locale) {
return toDisplayString(defaultResourceBundleName, locale);
}
Obtains the key as a localized string.
If a localized string cannot be found for the key, the
locale independent key stored in the role will be returned. |
protected String toDisplayString(String resourceBundleName,
Locale locale) {
// loads the resource bundle if necessary
loadResourceBundle(resourceBundleName, locale);
// returns the localized string
Object o = table.get(locale);
if (o != null && o instanceof Hashtable) {
Hashtable resourceTable = (Hashtable) o;
o = resourceTable.get(key);
if (o != null && o instanceof String) {
return (String)o;
}
}
return key;
}
Obtains the key as a localized string.
If a localized string cannot be found for the key, the
locale independent key stored in the role will be returned.
This method is intended to be used only by subclasses so that they
can specify their own resource bundles which contain localized
strings for their keys. |
public String toString() {
return toDisplayString();
}
Gets localized string describing the key using the default locale. |