|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.hibernate.validator.resourceloading.DelegatingResourceBundleLocator
org.hibernate.validator.resourceloading.AggregateResourceBundleLocator
public class AggregateResourceBundleLocator
A ResourceBundleLocator
implementation that provides access
to multiple source ResourceBundle
s by merging them into one
aggregated bundle.
Nested Class Summary | |
---|---|
static class |
AggregateResourceBundleLocator.AggregateBundle
A ResourceBundle which's content is aggregated from multiple source bundles. |
Constructor Summary | |
---|---|
AggregateResourceBundleLocator(List<String> bundleNames)
Creates a locator that delivers a resource bundle merged from the given list of source bundles. |
|
AggregateResourceBundleLocator(List<String> bundleNames,
ResourceBundleLocator delegate)
Creates a locator that delivers a resource bundle merged from the given list of source bundles. |
Method Summary | |
---|---|
ResourceBundle |
getResourceBundle(Locale locale)
Returns a resource bundle for the given locale. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AggregateResourceBundleLocator(List<String> bundleNames)
bundleNames
- A list with source bundle names. The returned bundle will
contain all entries from all source bundles. In case a key occurs
in multiple source bundles, the value will be taken from the
first bundle containing the key.public AggregateResourceBundleLocator(List<String> bundleNames, ResourceBundleLocator delegate)
bundleNames
- A list with source bundle names. The returned bundle will
contain all keys from all source bundles. In case a key occurs
in multiple source bundles, the value will be taken from the
first bundle containing the key.delegate
- A delegate resource bundle locator. The bundle returned by
this locator will be added to the aggregate bundle after all
source bundles.Method Detail |
---|
public ResourceBundle getResourceBundle(Locale locale)
ResourceBundleLocator
getResourceBundle
in interface ResourceBundleLocator
getResourceBundle
in class DelegatingResourceBundleLocator
locale
- A locale, for which a resource bundle shall be retrieved. Must
not be null.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |