|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.geronimo.system.configuration.Printer org.apache.geronimo.system.configuration.IndentPrinter
public class IndentPrinter
Extends Printer
and adds support for indentation and line
wrapping.
Field Summary |
---|
Fields inherited from class org.apache.geronimo.system.configuration.Printer |
---|
docWriter, dtdWriter, exception, format, writer |
Method Summary | |
---|---|
void |
breakLine()
Called to print a line consisting of the text accumulated so far. |
void |
breakLine(boolean preserveSpace)
|
void |
enterDTD()
Called by any of the DTD handlers to enter DTD mode. |
void |
flush()
Flush the output stream. |
void |
flushLine(boolean preserveSpace)
Flushes the line accumulated so far to the writer and get ready to accumulate the next line. |
int |
getNextIndent()
|
void |
indent()
Increment the indentation for the next line. |
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. |
void |
printSpace()
Called to print a single space between text parts that may be broken into separate lines. |
void |
printText(char ch)
|
void |
printText(char[] chars,
int start,
int length)
|
void |
printText(String text)
Called to print additional text. |
void |
printText(StringBuffer text)
|
void |
setNextIndent(int indent)
|
void |
setThisIndent(int indent)
|
void |
unindent()
Decrement the indentation for the next line. |
Methods inherited from class org.apache.geronimo.system.configuration.Printer |
---|
getException |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public void enterDTD()
leaveDTD()
.
enterDTD
in class Printer
public String leaveDTD()
leaveDTD
in class Printer
public void printText(String text)
printSpace()
) all the accumulated text becomes one part and is
added to the accumulate line. When a line is long enough, it can
be broken at its text boundary.
printText
in class Printer
text
- The text to printpublic void printText(StringBuffer text)
printText
in class Printer
public void printText(char ch)
printText
in class Printer
public void printText(char[] chars, int start, int length)
printText
in class Printer
public void printSpace()
printText(java.lang.String)
will be added to the accumulated line, and a space
separator will be counted. If the line accumulated so far is
long enough, it will be printed.
printSpace
in class Printer
public void breakLine()
printSpace()
but
forcing the line to print and starting a new line (printSpace()
will only start a new line if the current line
is long enough).
breakLine
in class Printer
public void breakLine(boolean preserveSpace)
breakLine
in class Printer
public void flushLine(boolean preserveSpace)
printText(java.lang.String)
and printSpace()
when the accumulated line plus
accumulated text are two long to fit on a given line. At the end of
this method _line
is empty and _spaces
is zero.
flushLine
in class Printer
public void flush()
flush
in class Printer
public void indent()
indent
in class Printer
public void unindent()
unindent
in class Printer
public int getNextIndent()
getNextIndent
in class Printer
public void setNextIndent(int indent)
setNextIndent
in class Printer
public void setThisIndent(int indent)
setThisIndent
in class Printer
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |