de.grogra.util
Interface ModifiableMap

All Superinterfaces:
Map
All Known Implementing Classes:
Configuration, ConfigurationSet, SOBindingImpl, StringMap

public interface ModifiableMap
extends Map

This interface adds a put-method to the Map interface.

Author:
Ole Kniemeyer

Nested Class Summary
static interface ModifiableMap.Producer
           
 
Nested classes/interfaces inherited from interface de.grogra.util.Map
Map.Chain
 
Field Summary
 
Fields inherited from interface de.grogra.util.Map
DEFAULT_VALUE, EMPTY_MAP
 
Method Summary
 java.lang.Object put(java.lang.Object key, java.lang.Object value)
          Maps key to value.
 
Methods inherited from interface de.grogra.util.Map
get
 

Method Detail

put

java.lang.Object put(java.lang.Object key,
                     java.lang.Object value)
Maps key to value. Following invocations of the get-method with key as key will return value.

Parameters:
key - a key
value - the value to be associated with key
Returns:
the previously associated value, or null