| java.lang.Object java.io.OutputStream org.jfree.report.util.NullOutputStream
NullOutputStream | public class NullOutputStream extends OutputStream (Code) | | A null output stream. All data written to this stream is ignored.
author: Thomas Morgner |
Method Summary | |
public void | write(int i) Writes to the stream (in this case, does nothing). | public void | write(byte[] bytes) Writes to the stream (in this case, does nothing). | public void | write(byte[] bytes, int off, int len) Writes to the stream (in this case, does nothing). |
NullOutputStream | public NullOutputStream()(Code) | | Default constructor.
|
write | public void write(int i) throws IOException(Code) | | Writes to the stream (in this case, does nothing).
Parameters: i - the value. throws: IOException - if there is an I/O problem. |
write | public void write(byte[] bytes) throws IOException(Code) | | Writes to the stream (in this case, does nothing).
Parameters: bytes - the bytes. throws: IOException - if there is an I/O problem. |
write | public void write(byte[] bytes, int off, int len) throws IOException(Code) | | Writes to the stream (in this case, does nothing).
Parameters: bytes - the bytes. Parameters: off - the start offset in the data. Parameters: len - the number of bytes to write. throws: IOException - if there is an I/O problem. |
|
|