Uses of Interface
org.eclipse.higgins.cache.api.ICacheKey

Packages that use ICacheKey
org.eclipse.higgins.cache.api   
org.eclipse.higgins.cache.api.key   
org.eclipse.higgins.cache.nocache   
 

Uses of ICacheKey in org.eclipse.higgins.cache.api
 

Methods in org.eclipse.higgins.cache.api with parameters of type ICacheKey
 Object ICache.get(ICacheKey key)
           
 boolean ICache.isKeyInCache(ICacheKey key)
           
 void ICache.put(ICacheKey key, Object value)
          Put object
 void ICache.remove(ICacheKey key)
          If object exist remove it
 void ICache.update(ICacheKey key, Object value)
          Update or put object.
 

Uses of ICacheKey in org.eclipse.higgins.cache.api.key
 

Classes in org.eclipse.higgins.cache.api.key that implement ICacheKey
 class CacheKey
           
 class UserCacheKey
          Deprecated. Dummy class, use CacheKey instead.
 

Uses of ICacheKey in org.eclipse.higgins.cache.nocache
 

Methods in org.eclipse.higgins.cache.nocache with parameters of type ICacheKey
 Object NOCache.get(ICacheKey key)
           
 boolean NOCache.isKeyInCache(ICacheKey key)
           
 void NOCache.put(ICacheKey key, Object value)
           
 void NOCache.remove(ICacheKey key)
           
 void NOCache.update(ICacheKey key, Object value)