From ae312eee2dfa8d7cd11309ae23a13a195563c812 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Wed, 3 Apr 2013 09:56:36 -0700 Subject: [PATCH] Added XML parameter description placeholders for processing/processing-web#81 --- core/src/processing/data/XML.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/core/src/processing/data/XML.java b/core/src/processing/data/XML.java index 49a11f97d..572c71065 100644 --- a/core/src/processing/data/XML.java +++ b/core/src/processing/data/XML.java @@ -78,16 +78,26 @@ public class XML implements Serializable { // this(parent.createReader(filename)); // } + + /** + * @param file description TBD + */ public XML(File file) throws IOException, ParserConfigurationException, SAXException { this(file, null); } + /** + * @param options description TBD + */ public XML(File file, String options) throws IOException, ParserConfigurationException, SAXException { this(PApplet.createReader(file), options); } + /** + * @param input description TBD + */ public XML(InputStream input) throws IOException, ParserConfigurationException, SAXException { this(input, null); } @@ -141,6 +151,9 @@ public class XML implements Serializable { } + /** + * @param name description TBD + */ // TODO is there a more efficient way of doing this? wow. public XML(String name) throws ParserConfigurationException { DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();