Lines Matching refs:write

16  * 2 along with this work; if not, write to the Free Software Foundation,
41 * @param out a Writer to which to write the generated HTML
50 * @param out a Writer to which to write the generated HTML
59 this.out.write(docType);
65 * @param out a Writer to which to write the generated HTML
78 * @param out a Writer to which to write the generated HTML
128 * @see #write
133 out.write(">");
137 out.write("<");
138 out.write(tag);
151 out.write(">");
155 out.write("</");
156 out.write(tag);
157 out.write(">");
175 out.write(">");
188 * write attributes -- e.g. if this call does not follow startTag or other
196 out.write(" ");
197 out.write(name);
198 out.write("=");
203 out.write("\"");
204 out.write(value);
206 out.write("\"");
217 * write attributes -- e.g. if this call does not follow startTag or other
232 write(text);
245 public void write(String text) throws IOException {
247 out.write(">");
263 // if there are special characters write the string character at a time;
264 // otherwise, write it out as is
269 case '<': out.write("&lt;"); break;
270 case '>': out.write("&gt;"); break;
271 case '&': out.write("&amp;"); break;
272 default: out.write(c);
277 out.write(text);
282 * @param entity the entity to write
287 out.write(">");
290 out.write(entity);
321 write(body);
339 write(body);
361 write(body);
374 write(body);
405 public void write(ResourceBundle i18n, String key) throws IOException {
406 write(getString(i18n, key));
416 public void write(ResourceBundle i18n, String key, Object arg) throws IOException {
417 write(getString(i18n, key, arg));
427 public void write(ResourceBundle i18n, String key, Object[] args) throws IOException {
428 write(getString(i18n, key, args));
437 write(getString(i18n, key));
447 write(getString(i18n, key, arg));
457 write(getString(i18n, key, args));