putAll(java.util.Map m)
Copies all of the mappings from the specified map to this map
These mappings will replace any mappings that
this map had for any of the keys currently in the specified map.
Associates the specified value with the specified key in this map (optional operation).
If the map previously contained a mapping for this key, the old value is replaced.
The value must be a StyleInfo.
key - key with which the specified value is to be associated.
value - value to be associated with the specified key.
Returns:
previous value associated with specified key, or null if there was no mapping
for key. A null return can also indicate that the map previously associated null with
the specified key, if the implementation supports null values.
Copies all of the mappings from the specified map to this map
These mappings will replace any mappings that
this map had for any of the keys currently in the specified map.
The maps can only contain StyleInfo values.
java.lang.NullPointerException - if the specified map is null,
IllegalArgumentException if the specified map contains any values
which are not StyleInfos.