Uses of Class
org.eclipse.higgins.cache.CacheException

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

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

Methods in org.eclipse.higgins.cache.api that throw CacheException
 void ICache.clear()
          remove all objects from cache
 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 CacheException in org.eclipse.higgins.cache.api.key
 

Constructors in org.eclipse.higgins.cache.api.key that throw CacheException
CacheKey(String key)
           
 

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

Methods in org.eclipse.higgins.cache.nocache that throw CacheException
 void NOCache.clear()
           
 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)