Package org.pentaho.reporting.libraries.resourceloader.cache

Examples of org.pentaho.reporting.libraries.resourceloader.cache.DefaultResourceBundleDataCacheEntry


      throw new NullPointerException();
    }

    final ResourceBundleData cdata = CachingResourceBundleData.createCached(data);
    final Object keyObject = data.getBundleKey();
    final Object valueObject = new DefaultResourceBundleDataCacheEntry(cdata, caller);
    final Element element = new Element(keyObject, valueObject);
    if (EHCacheModule.CACHE_MONITOR.isDebugEnabled())
    {
      EHCacheModule.CACHE_MONITOR.debug("Storing Bundle " + keyObject);
    }
View Full Code Here


    {
      throw new NullPointerException();
    }

    final ResourceBundleData cdata = CachingResourceBundleData.createCached(data);
    dataCache.put(new Element(data.getKey(), new DefaultResourceBundleDataCacheEntry(cdata, caller)));
    return cdata;
  }
View Full Code Here

TOP

Related Classes of org.pentaho.reporting.libraries.resourceloader.cache.DefaultResourceBundleDataCacheEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.