public class IncreasingTarget extends java.lang.Object implements IndentationTarget
A filtering indentation target, which pipes all output to the actual target, except that it increases the indentation level by 1.
| Constructor and Description |
|---|
IncreasingTarget(IndentationTarget pActualTarget) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
asString(JavaQName pQName)
Converts a class name into a string.
|
void |
indent(int i)
Indents the current line by adding blanks for the given
indentation level.
|
boolean |
isInterface()
Returns whether the IndentationEngine is creating a Java
interface.
|
void |
setInterface(java.lang.Boolean pInterface) |
void |
write()
Terminates a line in the target.
|
void |
write(java.lang.String pValue)
Writes a string to the target.
|
public IncreasingTarget(IndentationTarget pActualTarget)
public boolean isInterface()
IndentationTargetReturns whether the IndentationEngine is creating a Java interface. Creating an interface means, for example, that method bodies are being suppressed.
isInterface in interface IndentationTargetpublic void setInterface(java.lang.Boolean pInterface)
public void indent(int i)
throws java.io.IOException
IndentationTargetIndents the current line by adding blanks for the given
indentation level. This method must be called before any
of the write(String) or write()
methods or following the line terminating write()
method.
indent in interface IndentationTargetjava.io.IOExceptionpublic java.lang.String asString(JavaQName pQName)
IndentationTargetConverts a class name into a string. The string may then be
written to the target using write().
asString in interface IndentationTargetpublic void write(java.lang.String pValue)
throws java.io.IOException
IndentationTargetWrites a string to the target.
write in interface IndentationTargetjava.io.IOExceptionpublic void write()
throws java.io.IOException
IndentationTargetTerminates a line in the target.
write in interface IndentationTargetjava.io.IOException