Skip to content

Commit ea1cf50

Browse files
author
Scott Murray
committed
Added XML parameter description placeholders for processing/processing-web-archive#81
1 parent 1ce81dc commit ea1cf50

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

core/src/processing/data/XML.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,16 +78,26 @@ protected XML() { }
7878
// this(parent.createReader(filename));
7979
// }
8080

81+
82+
/**
83+
* @param file description TBD
84+
*/
8185
public XML(File file) throws IOException, ParserConfigurationException, SAXException {
8286
this(file, null);
8387
}
8488

8589

90+
/**
91+
* @param options description TBD
92+
*/
8693
public XML(File file, String options) throws IOException, ParserConfigurationException, SAXException {
8794
this(PApplet.createReader(file), options);
8895
}
8996

9097

98+
/**
99+
* @param input description TBD
100+
*/
91101
public XML(InputStream input) throws IOException, ParserConfigurationException, SAXException {
92102
this(input, null);
93103
}
@@ -141,6 +151,9 @@ protected XML(Reader reader, String options) throws IOException, ParserConfigura
141151
}
142152

143153

154+
/**
155+
* @param name description TBD
156+
*/
144157
// TODO is there a more efficient way of doing this? wow.
145158
public XML(String name) throws ParserConfigurationException {
146159
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();

0 commit comments

Comments
 (0)