public interface IStringResourceLoader
Each particular implementation of this interface may define its own mechanism for searching for resources. Please see the documents for each particular implementation to determine its behavior and to see how it can be configured.
It is important to note that if a resource is not found by a particular loader than the loader
should return null
rather than throw an exception. The reason for this is that
loaders can be arranged in a chain and it would be very inefficient for loaders earlier in the
chain to throw exceptions that must be caught and handled each time until the correct loader in
the chain is reached.
ResourceSettings
Modifier and Type | Method and Description |
---|---|
String |
loadStringResource(Class<?> clazz,
String key,
Locale locale,
String style,
String variation)
Get the string resource for the given combination of component class, resource key, locale
and style.
|
String |
loadStringResource(Component component,
String key,
Locale locale,
String style,
String variation)
Get the string resource for the given combination of component, resource key, locale and
style.
|
String loadStringResource(Class<?> clazz, String key, Locale locale, String style, String variation)
clazz
- The class to get the string resource forkey
- The key should be a String containing a lookup key into a resource bundlelocale
- The locale should contain the locale of the current operation so that the
appropriate set of resources can be selectedstyle
- The style identifying the resource set to select the strings from (see
Session
)variation
- The components variation (of the style)String loadStringResource(Component component, String key, Locale locale, String style, String variation)
component
- The component to get the string resource forkey
- The key should be a String containing a lookup key into a resource bundlelocale
- Will be preset with the appropriate value. You shall ignore the component's
locale.style
- Will be preset with the appropriate value. You shall ignore the component's style.variation
- Will be preset with the appropriate value. You shall ignore the component's
variation.Copyright © 2006–2022 Apache Software Foundation. All rights reserved.