All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.webmacro.util.DictionaryTool

java.lang.Object
   |
   +----java.util.Dictionary
           |
           +----org.webmacro.util.DictionaryTool

public final class DictionaryTool
extends Dictionary
A HashTool wraps a java.util.Dictionary and provides additional features


Constructor Index

 o DictionaryTool(Dictionary)
Wrap the supplied dictionary.

Method Index

 o elements()
Forward call to Dictionary
 o get(Object)
Forward call to Dictionary
 o isEmpty()
Forward call to Dictionary
 o keys()
Forward call to Dictionary
 o keyString()
Return a string which concatenates the keys, putting commas between the keys
 o main(String[])
 o put(Object, Object)
Forward call to Dictionary
 o remove(Object)
Forward call to Dictionary
 o size()
Forward call to Dictionary

Constructors

 o DictionaryTool
 public DictionaryTool(Dictionary dict)
Wrap the supplied dictionary.

Methods

 o keyString
 public final String keyString()
Return a string which concatenates the keys, putting commas between the keys

 o elements
 public final Enumeration elements()
Forward call to Dictionary

Overrides:
elements in class Dictionary
 o isEmpty
 public final boolean isEmpty()
Forward call to Dictionary

Overrides:
isEmpty in class Dictionary
 o get
 public final Object get(Object key)
Forward call to Dictionary

Overrides:
get in class Dictionary
 o keys
 public final Enumeration keys()
Forward call to Dictionary

Overrides:
keys in class Dictionary
 o put
 public final Object put(Object newKey,
                         Object newValue)
Forward call to Dictionary

Overrides:
put in class Dictionary
 o remove
 public final Object remove(Object key)
Forward call to Dictionary

Overrides:
remove in class Dictionary
 o size
 public final int size()
Forward call to Dictionary

Overrides:
size in class Dictionary
 o main
 public static void main(String arg[])

All Packages  Class Hierarchy  This Package  Previous  Next  Index