Copies the key/value combinations from the given MapKeyMap into this MapKeyMap. If this MapKeyMap already contained a mapping for the any of the key combinations in the given MapKeyMap, the previous value is overwritten. @param mkm The MapKeyMap for which the key/value combinations shoul
(MapKeyMap mkm)
| 69 | * if the given MapKeyMap is null |
| 70 | */ |
| 71 | @SuppressWarnings("unchecked") |
| 72 | public final void putAll(MapKeyMap mkm) |
| 73 | { |
| 74 | map.putAll(mkm.map); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Adds the given value to the List for the given ListKey. The null value |
no outgoing calls