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. 
- 
- 
Constructor Summary
Constructors Constructor Description DelegatingIndentWriter(Writer delegate)DelegatingIndentWriter(Writer delegate, String indentString) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Writerappend(char c)Writerappend(CharSequence csq)Writerappend(CharSequence csq, int start, int end)voidclose()voidflush()intnext()intprevious()voidwrite(char[] cbuf)voidwrite(char[] cbuf, int off, int len)voidwrite(int c)voidwrite(String str)voidwrite(String str, int off, int len)voidwriteIndent()- 
Methods inherited from class java.io.Writer
nullWriter 
 - 
 
 - 
 
- 
- 
Field Detail
- 
SPACES
public static final String SPACES
- See Also:
 - Constant Field Values
 
 
- 
TAB
public static final String TAB
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
write
public void write(int c) throws IOException- Overrides:
 writein classWriter- Throws:
 IOException
 
- 
write
public void write(char[] cbuf) throws IOException- Overrides:
 writein classWriter- Throws:
 IOException
 
- 
write
public void write(char[] cbuf, int off, int len) throws IOException- Specified by:
 writein classWriter- Throws:
 IOException
 
- 
write
public void write(String str) throws IOException
- Overrides:
 writein classWriter- Throws:
 IOException
 
- 
write
public void write(String str, int off, int len) throws IOException
- Overrides:
 writein classWriter- Throws:
 IOException
 
- 
append
public Writer append(CharSequence csq) throws IOException
- Specified by:
 appendin interfaceAppendable- Overrides:
 appendin classWriter- Throws:
 IOException
 
- 
append
public Writer append(CharSequence csq, int start, int end) throws IOException
- Specified by:
 appendin interfaceAppendable- Overrides:
 appendin classWriter- Throws:
 IOException
 
- 
append
public Writer append(char c) throws IOException
- Specified by:
 appendin interfaceAppendable- Overrides:
 appendin classWriter- Throws:
 IOException
 
- 
flush
public void flush() throws IOException- Specified by:
 flushin interfaceFlushable- Specified by:
 flushin classWriter- Throws:
 IOException
 
- 
close
public void close() throws IOException- Specified by:
 closein interfaceAutoCloseable- Specified by:
 closein interfaceCloseable- Specified by:
 closein classWriter- Throws:
 IOException
 
- 
next
public int next()
 
- 
previous
public int previous()
 
- 
writeIndent
public void writeIndent() throws IOException- Throws:
 IOException
 
 - 
 
 -