From d030b9709c3cead8c781256f80dfac361630759f Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Sat, 1 Jun 2013 21:11:45 -0700 Subject: [PATCH] Starting to add JSONArray.setJSONArray() reference --- core/src/processing/data/JSONArray.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/processing/data/JSONArray.java b/core/src/processing/data/JSONArray.java index 18fd73fbf..cb2a136e3 100644 --- a/core/src/processing/data/JSONArray.java +++ b/core/src/processing/data/JSONArray.java @@ -928,7 +928,9 @@ public class JSONArray { /** * @webref jsonarray:method - * @brief To come... + * @brief Sets the JSONArray value associated with an index value + * @param index the index value to target + * @param value the value to assign */ public JSONArray setJSONArray(int index, JSONArray value) { set(index, value);