Package java.util
Class Hashtable
void putAll(Map t)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Copies all of the mappings from the specified map to this hashtable. These mappings will replace any mappings that this hashtable had for any of the keys currently in the specified map.
Example
Hashtable hashTable = new Hashtable();
Map map = new HashMap();
map.put("1", "h");
map.put("2", "a");
map.put("3", "s");
map.put("4", "h");
hashTable.putAll(map);
The example above puts all elements from the hashmap into the hashtable.