@@ -107,8 +107,8 @@ protected XMLBuilder(Node myNode, Node parentNode) {
107
107
* @return
108
108
* a builder node that can be used to add more nodes to the XML document.
109
109
*
110
- * @throws FactoryConfigurationError
111
- * @throws ParserConfigurationException
110
+ * @throws FactoryConfigurationError xyz
111
+ * @throws ParserConfigurationException xyz
112
112
*/
113
113
public static XMLBuilder create (String name , String namespaceURI ,
114
114
boolean enableExternalEntities , boolean isNamespaceAware )
@@ -134,8 +134,8 @@ public static XMLBuilder create(String name, String namespaceURI,
134
134
* @return
135
135
* a builder node that can be used to add more nodes to the XML document.
136
136
*
137
- * @throws FactoryConfigurationError
138
- * @throws ParserConfigurationException
137
+ * @throws FactoryConfigurationError xyz
138
+ * @throws ParserConfigurationException xyz
139
139
*/
140
140
public static XMLBuilder create (String name , boolean enableExternalEntities ,
141
141
boolean isNamespaceAware )
@@ -158,8 +158,8 @@ public static XMLBuilder create(String name, boolean enableExternalEntities,
158
158
* @return
159
159
* a builder node that can be used to add more nodes to the XML document.
160
160
*
161
- * @throws FactoryConfigurationError
162
- * @throws ParserConfigurationException
161
+ * @throws FactoryConfigurationError xyz
162
+ * @throws ParserConfigurationException xyz
163
163
*/
164
164
public static XMLBuilder create (String name , String namespaceURI )
165
165
throws ParserConfigurationException , FactoryConfigurationError
@@ -177,8 +177,8 @@ public static XMLBuilder create(String name, String namespaceURI)
177
177
* @return
178
178
* a builder node that can be used to add more nodes to the XML document.
179
179
*
180
- * @throws FactoryConfigurationError
181
- * @throws ParserConfigurationException
180
+ * @throws FactoryConfigurationError xyz
181
+ * @throws ParserConfigurationException xyz
182
182
*/
183
183
public static XMLBuilder create (String name )
184
184
throws ParserConfigurationException , FactoryConfigurationError
@@ -200,12 +200,12 @@ public static XMLBuilder create(String name)
200
200
* {@link DocumentBuilderFactory}
201
201
* @return
202
202
* a builder node that can be used to add more nodes to the XML document.
203
- * @throws ParserConfigurationException
204
203
*
205
- * @throws FactoryConfigurationError
206
- * @throws ParserConfigurationException
207
- * @throws IOException
208
- * @throws SAXException
204
+ * @throws ParserConfigurationException xyz
205
+ * @throws FactoryConfigurationError xyz
206
+ * @throws ParserConfigurationException xyz
207
+ * @throws IOException xyz
208
+ * @throws SAXException xyz
209
209
*/
210
210
public static XMLBuilder parse (
211
211
InputSource inputSource , boolean enableExternalEntities ,
@@ -232,11 +232,11 @@ public static XMLBuilder parse(
232
232
* @return
233
233
* a builder node that can be used to add more nodes to the XML document.
234
234
*
235
- * @throws ParserConfigurationException
236
- * @throws FactoryConfigurationError
237
- * @throws ParserConfigurationException
238
- * @throws IOException
239
- * @throws SAXException
235
+ * @throws ParserConfigurationException xyz
236
+ * @throws FactoryConfigurationError xyz
237
+ * @throws ParserConfigurationException xyz
238
+ * @throws IOException xyz
239
+ * @throws SAXException xyz
240
240
*/
241
241
public static XMLBuilder parse (
242
242
String xmlString , boolean enableExternalEntities ,
@@ -264,11 +264,11 @@ public static XMLBuilder parse(
264
264
* @return
265
265
* a builder node that can be used to add more nodes to the XML document.
266
266
*
267
- * @throws ParserConfigurationException
268
- * @throws FactoryConfigurationError
269
- * @throws ParserConfigurationException
270
- * @throws IOException
271
- * @throws SAXException
267
+ * @throws ParserConfigurationException xyz
268
+ * @throws FactoryConfigurationError xyz
269
+ * @throws ParserConfigurationException xyz
270
+ * @throws IOException xyz
271
+ * @throws SAXException xyz
272
272
*/
273
273
public static XMLBuilder parse (File xmlFile , boolean enableExternalEntities ,
274
274
boolean isNamespaceAware )
@@ -289,12 +289,12 @@ public static XMLBuilder parse(File xmlFile, boolean enableExternalEntities,
289
289
* an XML document input source that will be parsed into a DOM.
290
290
* @return
291
291
* a builder node that can be used to add more nodes to the XML document.
292
- * @throws ParserConfigurationException
293
292
*
294
- * @throws FactoryConfigurationError
295
- * @throws ParserConfigurationException
296
- * @throws IOException
297
- * @throws SAXException
293
+ * @throws ParserConfigurationException xyz
294
+ * @throws FactoryConfigurationError xyz
295
+ * @throws ParserConfigurationException xyz
296
+ * @throws IOException xyz
297
+ * @throws SAXException xyz
298
298
*/
299
299
public static XMLBuilder parse (InputSource inputSource )
300
300
throws ParserConfigurationException , SAXException , IOException
@@ -312,11 +312,11 @@ public static XMLBuilder parse(InputSource inputSource)
312
312
* @return
313
313
* a builder node that can be used to add more nodes to the XML document.
314
314
*
315
- * @throws ParserConfigurationException
316
- * @throws FactoryConfigurationError
317
- * @throws ParserConfigurationException
318
- * @throws IOException
319
- * @throws SAXException
315
+ * @throws ParserConfigurationException xyz
316
+ * @throws FactoryConfigurationError xyz
317
+ * @throws ParserConfigurationException xyz
318
+ * @throws IOException xyz
319
+ * @throws SAXException xyz
320
320
*/
321
321
public static XMLBuilder parse (String xmlString )
322
322
throws ParserConfigurationException , SAXException , IOException
@@ -334,11 +334,11 @@ public static XMLBuilder parse(String xmlString)
334
334
* @return
335
335
* a builder node that can be used to add more nodes to the XML document.
336
336
*
337
- * @throws ParserConfigurationException
338
- * @throws FactoryConfigurationError
339
- * @throws ParserConfigurationException
340
- * @throws IOException
341
- * @throws SAXException
337
+ * @throws ParserConfigurationException xyz
338
+ * @throws FactoryConfigurationError xyz
339
+ * @throws ParserConfigurationException xyz
340
+ * @throws IOException xyz
341
+ * @throws SAXException xyz
342
342
*/
343
343
public static XMLBuilder parse (File xmlFile )
344
344
throws ParserConfigurationException , SAXException , IOException
0 commit comments