1 package net.suberic.util.cache;2 3 /**4 * A class that can create SizedCacheEntries.5 */6 public interface SizedCacheEntryFactory {7 8 /**9 * Create an appropriate SizedCacheEntry.10 */11 public SizedCacheEntry createCacheEntry(Object value);12 13 }14