01: package net.suberic.util.cache; 02: 03: /** 04: * A class that can create SizedCacheEntries. 05: */ 06: public interface SizedCacheEntryFactory { 07: 08: /** 09: * Create an appropriate SizedCacheEntry. 10: */ 11: public SizedCacheEntry createCacheEntry(Object value); 12: 13: }