Package groovy.text.markup
Class DelegatingIndentWriter
java.lang.Object
java.io.Writer
groovy.text.markup.DelegatingIndentWriter
- All Implemented Interfaces:
Closeable
,Flushable
,Appendable
,AutoCloseable
public class DelegatingIndentWriter extends Writer
A writer which delegates to another writer and supports an additional indenting level.
-
Field Summary
-
Constructor Summary
Constructors Constructor Description DelegatingIndentWriter(Writer delegate)
DelegatingIndentWriter(Writer delegate, String indentString)
-
Method Summary
Modifier and Type Method Description Writer
append(char c)
Writer
append(CharSequence csq)
Writer
append(CharSequence csq, int start, int end)
void
close()
void
flush()
int
next()
int
previous()
void
write(char[] cbuf)
void
write(char[] cbuf, int off, int len)
void
write(int c)
void
write(String str)
void
write(String str, int off, int len)
void
writeIndent()
Methods inherited from class java.io.Writer
nullWriter
-
Field Details
-
SPACES
- See Also:
- Constant Field Values
-
TAB
- See Also:
- Constant Field Values
-
-
Constructor Details
-
DelegatingIndentWriter
-
DelegatingIndentWriter
-
-
Method Details
-
write
- Overrides:
write
in classWriter
- Throws:
IOException
-
write
- Overrides:
write
in classWriter
- Throws:
IOException
-
write
- Specified by:
write
in classWriter
- Throws:
IOException
-
write
- Overrides:
write
in classWriter
- Throws:
IOException
-
write
- Overrides:
write
in classWriter
- Throws:
IOException
-
append
- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Throws:
IOException
-
append
- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Throws:
IOException
-
append
- Specified by:
append
in interfaceAppendable
- Overrides:
append
in classWriter
- Throws:
IOException
-
flush
- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
-
next
public int next() -
previous
public int previous() -
writeIndent
- Throws:
IOException
-