Method Summary |
|
public void | breakLine() Called to print a line consisting of the text accumulated so
far. |
public void | breakLine(boolean preserveSpace) |
public void | enterDTD() Called by any of the DTD handlers to enter DTD mode.
Once entered, all output will be accumulated in a string
that can be printed as part of the document's DTD.
This method may be called any number of time but will only
have affect the first time it's called. |
public void | flush() Flush the output stream. |
public void | flushLine(boolean preserveSpace) Flushes the line accumulated so far to the writer and get ready
to accumulate the next line. |
public int | getNextIndent() |
public void | indent() Increment the indentation for the next line. |
public String | leaveDTD() Called by the root element to leave DTD mode and if any
DTD parts were printer, will return a string with their
textual content. |
public void | printSpace() Called to print a single space between text parts that may be
broken into separate lines. |
public void | printText(String text) Called to print additional text. |
public void | printText(StringBuffer text) |
public void | printText(char ch) |
public void | printText(char[] chars, int start, int length) |
public void | setNextIndent(int indent) |
public void | setThisIndent(int indent) |
public void | unindent() Decrement the indentation for the next line. |