01: package net.suberic.util.cache;
02:
03: /**
04: * A class that can create SizedCacheEntries.
05: */
06: public class SimpleSizedCacheEntryFactory {
07:
08: public SimpleSizedCacheEntryFactory() {
09: }
10:
11: /**
12: * Create an appropriate SizedCacheEntry.
13: */
14: public SizedCacheEntry createCacheEntry(Object value) {
15: return new SizedCacheEntry(value);
16: }
17:
18: }
|