From c79fd2bed58525a0a64d7c98b97c404436f1e245 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Sat, 1 Jun 2013 21:25:24 -0700 Subject: [PATCH] Added reference for JSONArray.setJSONObject() --- 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 cb2a136e3..e5c5d15dc 100644 --- a/core/src/processing/data/JSONArray.java +++ b/core/src/processing/data/JSONArray.java @@ -939,7 +939,9 @@ public class JSONArray { /** * @webref jsonarray:method - * @brief To come... + * @brief Sets the JSONObject value associated with an index value + * @param index the index value to target + * @param value the value to assign */ public JSONArray setJSONObject(int index, JSONObject value) { set(index, value);