com.hammurapi.flow.runtime.impl
Class PropertySetMap

java.lang.Object
  extended by java.util.AbstractMap<String,Object>
      extended by com.hammurapi.flow.runtime.impl.PropertySetMap
All Implemented Interfaces:
Map<String,Object>

public class PropertySetMap
extends AbstractMap<String,Object>

Map backed by property set.

Author:
Pavel Vlasov

Nested Class Summary
 
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Constructor Summary
PropertySetMap(PropertySet propertySet)
           
 
Method Summary
 Set<Map.Entry<String,Object>> entrySet()
           
 Object put(String key, Object value)
          Always returns null to avoid evaluation of lazy/cookable entries being replaced.
 
Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, putAll, remove, size, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PropertySetMap

public PropertySetMap(PropertySet propertySet)
Method Detail

entrySet

public Set<Map.Entry<String,Object>> entrySet()
Specified by:
entrySet in interface Map<String,Object>
Specified by:
entrySet in class AbstractMap<String,Object>

put

public Object put(String key,
                  Object value)
Always returns null to avoid evaluation of lazy/cookable entries being replaced.

Specified by:
put in interface Map<String,Object>
Overrides:
put in class AbstractMap<String,Object>