@webref jsonobject:method @brief Sets the JSONObject value associated with a key @param key a key string @param value value to assign @see JSONObject#setJSONArray(String, JSONArray) @see JSONObject#getJSONObject(String) @see JSONObject#getJSONArray(String)
(String key, JSONObject value)
| 1259 | * @see JSONObject#getJSONArray(String) |
| 1260 | */ |
| 1261 | public JSONObject setJSONObject(String key, JSONObject value) { |
| 1262 | return put(key, value); |
| 1263 | } |
| 1264 | |
| 1265 | /** |
| 1266 | * @webref jsonobject:method |