Gets the value for a property key. @param key the identifier for the property. Typically, it would be a string or enum. @return the value associated with the given property key or null if the property has no value.
(T key)
| 43 | * value. |
| 44 | */ |
| 45 | public Object get(T key) { |
| 46 | return map.get( key ); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Sets the property value for a given property key. Also clears out the property values for |
no outgoing calls