KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > util > cache > SizedCacheEntryFactory


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 JavaDoc value);
12
13 }
14
Popular Tags