Uses of Class
com.taco.util.AccessibleResourceBundle

Packages that use AccessibleResourceBundle
com.taco.util Provides utility classes for a variety of purposes. 
 

Uses of AccessibleResourceBundle in com.taco.util
 

Subclasses of AccessibleResourceBundle in com.taco.util
 class AccessibleResourceBundleAdapter
          Adapts an ordinary resource bundle to be an AccessibleResourceBundle.
 class CachedKeysResourceBundle
          A subclass of AccessibleResourceBundle that provides a useful implementation of getKeys().
protected static class ChainedResourceBundleFactory.ChainedResourceBundle
          A resource bundle that maps method calls to a contained resource bundle, except that its parent chain may continue after the contained resource bundle's chain ends.
 class MultiLinePropertyResourceBundle
          A resource bundle that reads its key/value pairs from a .properties file, which is interpreted by an instance of MultiLineProperties.
 class UIManagerResourceBundle
          A resource bundle that is backed by the UIManager.
 

Methods in com.taco.util that return AccessibleResourceBundle
protected  AccessibleResourceBundle ResourceBundleFactory._loadOrphanBundle(java.lang.String bundleName, java.util.Locale defaultLocale, java.lang.ClassLoader loader)
          This method is called when it has been determined that a resource bundle is not in the cache, and we want to load the bundle from the system.
protected  AccessibleResourceBundle ResourceBundleFactory._loadOrphanBundleFromClass(java.lang.String bundleName, java.util.Locale defaultLocale, java.lang.ClassLoader loader)
          Load a bundle from a .class file.
protected  AccessibleResourceBundle ResourceBundleFactory._loadOrphanBundleFromProperties(java.lang.String bundleName, java.lang.ClassLoader loader)
          Load an instance of MultiLinePropertyResourceBundle based on a resource with the bundle name as the main part of its filename, and ".properties" as its extension.
protected  AccessibleResourceBundle ResourceBundleFactory._loadOrphanBundleFromUIManager(java.lang.String bundleName)
          Load a bundle based on the UIManager.
protected  AccessibleResourceBundle ResourceBundleFactory._lookupBundleInCache(java.lang.String bundleName, java.util.Locale defaultLocale, java.lang.ClassLoader loader)
          Look in the bundle cache to see if a bundle for the arguments has been cached.
static AccessibleResourceBundle AccessibleResourceBundleAdapter.makeAccessibleBundle(java.util.ResourceBundle bundle)
          Given a resource bundle, return either the bundle itself, if it is an instance of AccessibleResourceBundle, or an adapted version of it which is an AccessibleResourceBundle.