SimpleSizedCacheEntryFactory.java :  » Mail-Clients » pooka » net » suberic » util » cache » Java Open Source

Java Open Source » Mail Clients » pooka 
pooka » net » suberic » util » cache » SimpleSizedCacheEntryFactory.java
package net.suberic.util.cache;

/**
 * A class that can create SizedCacheEntries.
 */
public class SimpleSizedCacheEntryFactory {

  public SimpleSizedCacheEntryFactory() {
  }

  /**
   * Create an appropriate SizedCacheEntry.
   */
  public SizedCacheEntry createCacheEntry(Object value) {
    return new SizedCacheEntry(value);
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.