Home | History | Annotate | Download | only in jheer

Lines Matching refs:write

46  * [Print]FileWriter to write the XML to. Call the {@link #begin()} or
67 * @param out the FileWriter to write the XML to
76 * @param out the FileWriter to write the XML to
87 * Write <em>unescaped</em> text into the XML file. To write
89 * @param s the text to write. This String will not be escaped.
91 public void write(String s) throws IOException {
92 m_out.write(s);
96 * Write <em>unescaped</em> text into the XML file, followed by
97 * a newline. To write escaped text, use the {@link #content(String)}
99 * @param s the text to write. This String will not be escaped.
102 m_out.write(s);
103 m_out.write("\n");
107 * Write a newline into the XML file.
110 m_out.write("\n");
119 m_out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
133 m_out.write(header);
138 * Write a comment in the XML document. The comment will be written
144 m_out.write("<!-- ");
145 m_out.write(comment);
146 m_out.write(" -->");
163 m_out.write('<');
164 m_out.write(tag);
166 m_out.write(' ');
167 m_out.write(names[i]);
168 m_out.write('=');
169 m_out.write('\"');
171 m_out.write('\"');
173 if ( close ) m_out.write('/');
174 m_out.write('>');
183 * Write a closed tag with attributes. The tag will be followed by a
196 * Write a start tag with attributes. The tag will be followed by a
209 * Write a new attribut to an existing tag. The attribute will be followed by a newline.
215 m_out.write(name);
216 m_out.write('=');
217 m_out.write('\"');
219 m_out.write('\"');
233 m_out.write('<');
234 m_out.write(tag);
235 m_out.write(' ');
236 m_out.write(name);
237 m_out.write('=');
238 m_out.write('\"');
240 m_out.write('\"');
241 if ( close ) m_out.write('/');
242 m_out.write('>');
251 * Write a closed tag with one attribute. The tag will be followed by a
263 * Write a start tag with one attribute. The tag will be followed by a
287 m_out.write('<');
288 m_out.write(tag);
290 m_out.write(' ');
291 m_out.write((String)names.get(i));
292 m_out.write('=');
293 m_out.write('\"');
295 m_out.write('\"');
297 if ( close ) m_out.write('/');
298 m_out.write('>');
307 * Write a closed tag with attributes. The tag will be followed by a
320 * Write a start tag with attributes. The tag will be followed by a
333 * Write a start tag without attributes. The tag will be followed by a
348 m_out.write('<');
349 m_out.write('/');
350 m_out.write(tag);
351 m_out.write('>');
356 * Write a new content tag with a single attribute, consisting of an
366 m_out.write('<'); m_out.write(tag); m_out.write(' ');
367 m_out.write(name); m_out.write('=');
368 m_out.write('\"'); escapeString(value); m_out.write('\"');
369 m_out.write('>');
371 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>');
376 * Write a new content tag with no attributes, consisting of an
383 m_out.write('<'); m_out.write(tag); m_out.write('>');
385 m_out.write('<'); m_out.write('/'); m_out.write(tag); m_out.write('>');
390 * Write content text.
412 m_out.write(footer);
417 * Write the current spacing (determined by the indentation level)
426 m_out.write(' ');
447 m_out.write("null");
460 m_out.write("&#");
461 m_out.write(Integer.toString(c));
462 m_out.write(';');
470 m_out.write(VALID[j]);
476 m_out.write(c);