org.apache.pivot.wtk
Class ApplicationContext.ResourceCacheDictionary

java.lang.Object
  extended by org.apache.pivot.wtk.ApplicationContext.ResourceCacheDictionary
All Implemented Interfaces:
Iterable<URL>, org.apache.pivot.collections.Dictionary<URL,Object>
Enclosing class:
ApplicationContext

public static final class ApplicationContext.ResourceCacheDictionary
extends Object
implements org.apache.pivot.collections.Dictionary<URL,Object>, Iterable<URL>

Resource cache dictionary implementation.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.collections.Dictionary
org.apache.pivot.collections.Dictionary.Pair<K,V>
 
Method Summary
 boolean containsKey(URL key)
           
 Object get(URL key)
           
 Iterator<URL> iterator()
           
 Object put(URL key, Object value)
           
 Object remove(URL key)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

public Object get(URL key)
Specified by:
get in interface org.apache.pivot.collections.Dictionary<URL,Object>

put

public Object put(URL key,
                  Object value)
Specified by:
put in interface org.apache.pivot.collections.Dictionary<URL,Object>

remove

public Object remove(URL key)
Specified by:
remove in interface org.apache.pivot.collections.Dictionary<URL,Object>

containsKey

public boolean containsKey(URL key)
Specified by:
containsKey in interface org.apache.pivot.collections.Dictionary<URL,Object>

iterator

public Iterator<URL> iterator()
Specified by:
iterator in interface Iterable<URL>