org.apache.pivot.wtk
Class Action.NamedActionDictionary

java.lang.Object
  extended by org.apache.pivot.wtk.Action.NamedActionDictionary
All Implemented Interfaces:
Iterable<String>, org.apache.pivot.collections.Dictionary<String,Action>
Enclosing class:
Action

public static final class Action.NamedActionDictionary
extends Object
implements org.apache.pivot.collections.Dictionary<String,Action>, Iterable<String>

Action 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(String id)
           
 Action get(String id)
           
 Iterator<String> iterator()
           
 Action put(String id, Action action)
           
 Action remove(String id)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

public Action get(String id)
Specified by:
get in interface org.apache.pivot.collections.Dictionary<String,Action>

put

public Action put(String id,
                  Action action)
Specified by:
put in interface org.apache.pivot.collections.Dictionary<String,Action>

remove

public Action remove(String id)
Specified by:
remove in interface org.apache.pivot.collections.Dictionary<String,Action>

containsKey

public boolean containsKey(String id)
Specified by:
containsKey in interface org.apache.pivot.collections.Dictionary<String,Action>

iterator

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