Constructor and Description |
---|
IndentPrinter(java.io.Writer writer,
OutputFormat format) |
Modifier and Type | Method and Description |
---|---|
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.
|
java.lang.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(java.lang.String text)
Called to print additional text.
|
void |
printText(java.lang.StringBuffer text) |
void |
setNextIndent(int indent) |
void |
setThisIndent(int indent) |
void |
unindent()
Decrement the indentation for the next line.
|
getException
public IndentPrinter(java.io.Writer writer, OutputFormat format)
public void enterDTD()
leaveDTD()
.public java.lang.String leaveDTD()
public void printText(java.lang.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.public void printText(char[] chars, int start, int length)
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).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.public void flush()
public void indent()
public void unindent()
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
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"