From cebf10855e7b33767f1e6db187534769a923505a Mon Sep 17 00:00:00 2001 From: alignedleft Date: Wed, 19 Dec 2012 23:58:46 +0000 Subject: [PATCH] Added reference page for createXML() --- core/src/processing/core/PApplet.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index aae783760..4abad6d9d 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -5813,13 +5813,12 @@ public class PApplet extends Applet // DATA I/O /** - * xxxxxx scott is cleaning this up - * * @webref input:files * @brief Creates a new XML object - * @param data the content to be parsed as XML + * @param name the name to be given to the root element of the new XML object * @return an XML object, or null * @see PApplet#loadXML(String) + * @see PApplet#parseXML(String) */ public XML createXML(String name) { try { @@ -5833,6 +5832,7 @@ public class PApplet extends Applet /** * @webref input:files * @param filename name of a file in the data folder or a URL. + * @see PApplet#createXML(String) * @see PApplet#parseXML(String) * @see PApplet#saveXML(String) * @see PApplet#loadBytes(String) @@ -5858,6 +5858,7 @@ public class PApplet extends Applet * @brief Converts String content to an XML object * @param data the content to be parsed as XML * @return an XML object, or null + * @see PApplet#createXML(String) * @see PApplet#loadXML(String) * @see PApplet#saveXML(String) */ @@ -5878,6 +5879,7 @@ public class PApplet extends Applet * @webref output:files * @param xml the XML object to save to disk * @param filename name of the file to write to + * @see PApplet#createXML(String) * @see PApplet#loadXML(String) * @see PApplet#parseXML(String) */