Sets the value of the JSONObject with the index value. @webref jsonarray:method @webBrief Sets the value of the JSONObject with the index value @param index the index value to target @param value the value to assign @see JSONArray#setJSONArray(int, JSONArray) @see JSONArray#getJSONObj
(int index, JSONObject value)
| 1082 | * @see JSONArray#getJSONArray(int) |
| 1083 | */ |
| 1084 | public JSONArray setJSONObject(int index, JSONObject value) { |
| 1085 | set(index, value); |
| 1086 | return this; |
| 1087 | } |
| 1088 | |
| 1089 | |
| 1090 | /** |