|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.9.0) E52944-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
oracle.javatools.util.BundleLoader
public class BundleLoader
By default the strategy for fetching resource bundles requires a large number of class and resource fetches; the method ResourceBundle.getBundle(String,Locale,ClassLoader) gives precise details. Many of these are speculative - the fetch frequently fails - and this imposes a significant overhead for any resource bundle fetch. For example, it is unusual for translations specific to American and British English to exist so there are rarely bundles suffixed with 'en_US' or 'en_GB'. In fact often 'en' does not exist as the base resource is English. For a large number of resources the set of translated locales is a given. The BundleLoader takes advantage of this knowledge to minimise speculative searches for the default locale. Setting the System property oracle.translated.locales to a comma separated list of locales, eg oracle.translated.locales=ja,fr_CA, specifies the available translations. The BundleLoader uses this list to determine which extant locale should be used as the default.
| Constructor Summary | |
|---|---|
BundleLoader(java.util.Locale locale, java.lang.String inclusionList)Constructs a BundleLoader that maps locale to a restricted one given the inclusionList. |
|
| Method Summary | |
|---|---|
static java.util.ResourceBundle |
getBundle(java.lang.String baseName)Deprecated. JDeveloper now has multiple classloaders and this method is thus unsafe because, unlike ResourceBundle.getBundle(String) it doesn't use the call stack to determine the caller. |
static java.util.ResourceBundle |
getBundle(java.lang.String baseName, java.lang.ClassLoader loader)Gets a resource bundle using the 'default' locale and the supplied class loader. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BundleLoader(java.util.Locale locale,
java.lang.String inclusionList)
BundleLoader that maps locale to a restricted one given the inclusionList.
locale - locale to map, must not be nullinclusionList - comma separated list of available locales or null for no restrictions| Method Detail |
|---|
public static final java.util.ResourceBundle getBundle(java.lang.String baseName)
ResourceBundle.getBundle(String) it doesn't use the call stack to determine the caller.ResourceBundle.getBundle(String)
public static final java.util.ResourceBundle getBundle(java.lang.String baseName,
java.lang.ClassLoader loader)
ResourceBundle.getBundle(String,Locale,ClassLoader)
|
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.9.0) E52944-01 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||