Sets the value of the JSONArray with the associated index value. @webref jsonarray:method @webBrief Sets the value of the JSONArray with the associated index value @param index the index value to target @param value the value to assign @see JSONArray#setJSONObject(int, JSONObject) @se
(int index, JSONArray value)
| 1066 | * @see JSONArray#getJSONArray(int) |
| 1067 | */ |
| 1068 | public JSONArray setJSONArray(int index, JSONArray value) { |
| 1069 | set(index, value); |
| 1070 | return this; |
| 1071 | } |
| 1072 | |
| 1073 | /** |
| 1074 | * Sets the value of the <b>JSONObject</b> with the index value. |