Lines Matching refs:content
41 * tags, and adding content and comments. This class handles correct
88 * escaped text, use the {@link #content(String)} method instead.
97 * a newline. To write escaped text, use the {@link #content(String)}
356 * Write a new content tag with a single attribute, consisting of an
357 * open tag, content text, and a closing tag, all on one line.
361 * @param content the text content, this text will be escaped
363 public void contentTag(String tag, String name, String value, String content) throws IOException
370 escapeString(content);
376 * Write a new content tag with no attributes, consisting of an
377 * open tag, content text, and a closing tag, all on one line.
379 * @param content the text content, this text will be escaped
381 public void contentTag(String tag, String content) throws IOException {
384 escapeString(content);
390 * Write content text.
391 * @param content the content text, this text will be escaped
393 public void content(String content) throws IOException {
394 escapeString(content);