@@ -60,7 +60,7 @@ public class PrettyPrintXMLWriter
60
60
61
61
/**
62
62
* @param writer not null
63
- * @param lineIndent could be null, but the normal way is some spaces.
63
+ * @param lineIndent can be null, but the normal way is some spaces
64
64
*/
65
65
public PrettyPrintXMLWriter ( PrintWriter writer , String lineIndent )
66
66
{
@@ -69,7 +69,7 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent )
69
69
70
70
/**
71
71
* @param writer not null
72
- * @param lineIndent could be null, but the normal way is some spaces.
72
+ * @param lineIndent can be null, but the normal way is some spaces.
73
73
*/
74
74
public PrettyPrintXMLWriter ( Writer writer , String lineIndent )
75
75
{
@@ -94,9 +94,9 @@ public PrettyPrintXMLWriter( Writer writer )
94
94
95
95
/**
96
96
* @param writer not null
97
- * @param lineIndent could be null, but the normal way is some spaces.
98
- * @param encoding could be null or invalid.
99
- * @param doctype could be null.
97
+ * @param lineIndent can be null, but the normal way is some spaces
98
+ * @param encoding can be null or invalid
99
+ * @param doctype can be null
100
100
*/
101
101
public PrettyPrintXMLWriter ( PrintWriter writer , String lineIndent , String encoding , String doctype )
102
102
{
@@ -105,9 +105,9 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String encod
105
105
106
106
/**
107
107
* @param writer not null
108
- * @param lineIndent could be null, but the normal way is some spaces.
109
- * @param encoding could be null or invalid.
110
- * @param doctype could be null.
108
+ * @param lineIndent can be null, but the normal way is some spaces
109
+ * @param encoding can be null or invalid
110
+ * @param doctype can be null
111
111
*/
112
112
public PrettyPrintXMLWriter ( Writer writer , String lineIndent , String encoding , String doctype )
113
113
{
@@ -116,8 +116,8 @@ public PrettyPrintXMLWriter( Writer writer, String lineIndent, String encoding,
116
116
117
117
/**
118
118
* @param writer not null
119
- * @param encoding could be null or invalid.
120
- * @param doctype could be null.
119
+ * @param encoding can be null or invalid
120
+ * @param doctype can be null
121
121
*/
122
122
public PrettyPrintXMLWriter ( PrintWriter writer , String encoding , String doctype )
123
123
{
@@ -126,8 +126,8 @@ public PrettyPrintXMLWriter( PrintWriter writer, String encoding, String doctype
126
126
127
127
/**
128
128
* @param writer not null
129
- * @param encoding could be null or invalid.
130
- * @param doctype could be null.
129
+ * @param encoding can be null or invalid
130
+ * @param doctype can be null
131
131
*/
132
132
public PrettyPrintXMLWriter ( Writer writer , String encoding , String doctype )
133
133
{
@@ -136,10 +136,10 @@ public PrettyPrintXMLWriter( Writer writer, String encoding, String doctype )
136
136
137
137
/**
138
138
* @param writer not null
139
- * @param lineIndent could be null, but the normal way is some spaces.
140
- * @param lineSeparator could be null, but the normal way is valid line separator
141
- * @param encoding could be null or the encoding to use.
142
- * @param doctype could be null.
139
+ * @param lineIndent can be null, but the normal way is some spaces.
140
+ * @param lineSeparator can be null, but the normal way is valid line separator
141
+ * @param encoding can be null or the encoding to use.
142
+ * @param doctype can be null
143
143
*/
144
144
public PrettyPrintXMLWriter ( PrintWriter writer , String lineIndent , String lineSeparator , String encoding ,
145
145
String doctype )
@@ -149,10 +149,10 @@ public PrettyPrintXMLWriter( PrintWriter writer, String lineIndent, String lineS
149
149
150
150
/**
151
151
* @param writer not null
152
- * @param lineIndent could be null, but the normal way is some spaces.
153
- * @param lineSeparator could be null, but the normal way is valid line separator
154
- * @param encoding could be null or the encoding to use.
155
- * @param doctype could be null.
152
+ * @param lineIndent can be null, but the normal way is some spaces
153
+ * @param lineSeparator can be null, but the normal way is valid line separator
154
+ * @param encoding can be null or the encoding to use
155
+ * @param doctype can be null
156
156
*/
157
157
private PrettyPrintXMLWriter ( PrintWriter writer , char [] lineIndent , char [] lineSeparator , String encoding ,
158
158
String doctype )
@@ -211,7 +211,7 @@ public void setDocType( String docType )
211
211
}
212
212
213
213
/**
214
- * @param lineSeparator The line separator to be used.
214
+ * @param lineSeparator the line separator to be output
215
215
*/
216
216
public void setLineSeparator ( String lineSeparator )
217
217
{
@@ -224,7 +224,7 @@ public void setLineSeparator( String lineSeparator )
224
224
}
225
225
226
226
/**
227
- * @param lineIndentParameter The line indent parameter.
227
+ * @param lineIndentParameter the line indent parameter
228
228
*/
229
229
public void setLineIndenter ( String lineIndentParameter )
230
230
{
@@ -239,6 +239,12 @@ public void setLineIndenter( String lineIndentParameter )
239
239
/** {@inheritDoc} */
240
240
public void startElement ( String elementName ) throws IOException
241
241
{
242
+
243
+ if ( elementName .isEmpty () )
244
+ {
245
+ throw new IllegalArgumentException ( "Element name cannot be empty" );
246
+ }
247
+
242
248
boolean firstLine = ensureDocumentStarted ();
243
249
244
250
completePreviouslyOpenedElement ();
@@ -325,7 +331,7 @@ public void endElement() throws IOException
325
331
}
326
332
327
333
/**
328
- * Write the documents if not already done.
334
+ * Write the document if not already done.
329
335
*
330
336
* @return <code>true</code> if the document headers have freshly been written.
331
337
*/
0 commit comments