@webref jsonobject:method @brief Sets the JSONArray value associated with a key @param key a key string @param value value to assign @see JSONObject#setJSONObject(String, JSONObject) @see JSONObject#getJSONObject(String) @see JSONObject#getJSONArray(String)
(String key, JSONArray value)
| 1272 | * @see JSONObject#getJSONArray(String) |
| 1273 | */ |
| 1274 | public JSONObject setJSONArray(String key, JSONArray value) { |
| 1275 | return put(key, value); |
| 1276 | } |
| 1277 | |
| 1278 | |
| 1279 | // /** |