Interface ResourceBundleProvider
public interface ResourceBundleProvider
The interface of the service that gets
ResourceBundle objects from a given bundle with a
given locale.
This service abstracts out the reference to the BundleLocalization and enables the
possibility to load ResourceBundles from different locations than the default OSGi
context.
- Since:
- 1.2
-
Method Summary
Modifier and TypeMethodDescriptiongetResourceBundle(Bundle bundle, String locale) Returns aResourceBundleobject for the given bundle and locale.
-
Method Details
-
getResourceBundle
Returns aResourceBundleobject for the given bundle and locale.- Parameters:
bundle- the bundle to get localization forlocale- the name of the locale to get, ornullif the default locale is to be used- Returns:
- A
ResourceBundleobject for the given bundle and locale, ornullis returned if no ResourceBundle object can be loaded.
-