Set a named value. @param name The name associated with the value. @param value The value associated with the name. @return The value previously associated with the given name. Returns null if no value was previously associated with the name. @throws NullPointerException if the name
(String name, Object value)
| 30 | * @throws <code>IllegalArgumentException</code> if the name is empty String. |
| 31 | */ |
| 32 | public Object put(String name, Object value); |
| 33 | |
| 34 | /** |
| 35 | * Adds all the mappings in a given <code>Map</code> to this <code>Bindings</code. |
no outgoing calls