- java.lang.Object
-
- javax.accessibility.AccessibleBundle
-
- Direct Known Subclasses:
- AccessibleRelation, AccessibleRole, AccessibleState
public abstract class AccessibleBundle extends Object
Base class used to maintain a strongly typed enumeration. This is the superclass of
AccessibleState
andAccessibleRole
.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.
- See Also:
AccessibleRole
,AccessibleState
-
-
Field Summary
Fields Modifier and Type Field and Description protected String
key
The locale independent name of the state.
-
Constructor Summary
Constructors Constructor and Description AccessibleBundle()
-
Method Summary
Methods Modifier and Type Method and Description String
toDisplayString()
Gets localized string describing the key using the default locale.String
toDisplayString(Locale locale)
Obtains the key as a localized string.protected String
toDisplayString(String resourceBundleName, Locale locale)
Obtains the key as a localized string.String
toString()
Gets localized string describing the key using the default locale.
-
-
-
Field Detail
-
key
protected String key
The locale independent name of the state. This is a programmatic name that is not intended to be read by humans.
-
-
Method Detail
-
toDisplayString
protected String toDisplayString(String resourceBundleName, Locale 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. 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.- Parameters:
resourceBundleName
- the name of the resource bundle to use for lookuplocale
- the locale for which to obtain a localized string- Returns:
- a localized String for the key.
-
toDisplayString
public String toDisplayString(Locale 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.- Parameters:
locale
- the locale for which to obtain a localized string- Returns:
- a localized String for the key.
-
toDisplayString
public String toDisplayString()
Gets localized string describing the key using the default locale.- Returns:
- a localized String describing the key for the default locale
-
toString
public String toString()
Gets localized string describing the key using the default locale.- Overrides:
toString
in classObject
- Returns:
- a localized String describing the key using the default locale
- See Also:
toDisplayString(java.lang.String, java.util.Locale)
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/11/2024 21:48:21 Cette version de la page est en cache (à la date du 21/11/2024 21:48:21) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/accessibility/accessiblebundle.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.