package net.suberic.util.cache;
/**
* A class that can create SizedCacheEntries.
*/
publicclass SimpleSizedCacheEntryFactory {
public SimpleSizedCacheEntryFactory() {
}
/**
* Create an appropriate SizedCacheEntry.
*/
public SizedCacheEntry createCacheEntry(Object value) {
returnnew SizedCacheEntry(value);
}
}