| java.lang.Object java.io.Writer org.mandarax.util.NullWriter
NullWriter | public class NullWriter extends Writer (Code) | | A writer that does nothing.
author: Jens Dietrich version: 3.4 <7 March 05> since: 3.0 |
Method Summary | |
public void | close() Close the writer. | public void | flush() Flush the writer. | public void | write(char[] cbuf, int off, int len) Write data. |
close | public void close()(Code) | | Close the writer.
|
flush | public void flush()(Code) | | Flush the writer.
|
write | public void write(char[] cbuf, int off, int len)(Code) | | Write data.
Parameters: cbuf - - Array of characters Parameters: off - - Offset from which to start writing characters Parameters: len - - Number of characters to write |
|
|