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)
           
 void ICache.put(ICacheKey key, Object value)
          Put object
 void ICache.update(ICacheKey key, Object value)
          Update or put object.
 void ICache.remove(ICacheKey key)
          If object exist remove it
 boolean ICache.isKeyInCache(ICacheKey key)
           
 

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

Classes in org.eclipse.higgins.cache.api.key that implement ICacheKey
 class UserCacheKey
           
 

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)
           
 void NOCache.put(ICacheKey key, Object value)
           
 void NOCache.remove(ICacheKey key)
           
 void NOCache.update(ICacheKey key, Object value)
           
 boolean NOCache.isKeyInCache(ICacheKey key)