Interface BundleLocalization
- All Known Implementing Classes:
BundleLocalizationImpl
public interface BundleLocalization
The interface of the service that gets
ResourceBundle
objects from a given
bundle with a given locale.
This interface is not intended to be implemented by clients.
- Since:
- 3.1
- Restriction:
- This interface is not intended to be implemented by clients.
-
Method Summary
Modifier and TypeMethodDescriptiongetLocalization
(Bundle bundle, String locale) Returns aResourceBundle
object for the given bundle and locale.
-
Method Details
-
getLocalization
Returns aResourceBundle
object for the given bundle and locale.- Parameters:
bundle
- the bundle to get localization forlocale
- the name of the locale to get, ornull
if the default locale is to be used- Returns:
- A
ResourceBundle
object for the given bundle and locale, ornull
is returned if no ResourceBundle object can be loaded.
-