org.jfree.layouting.util
public class NullOutputStream extends OutputStream
Constructor Summary | |
---|---|
NullOutputStream()
Default constructor. |
Method Summary | |
---|---|
void | write(int i)
Writes to the stream (in this case, does nothing).
|
void | write(byte[] bytes)
Writes to the stream (in this case, does nothing).
|
void | write(byte[] bytes, int off, int len)
Writes to the stream (in this case, does nothing).
|
Parameters: i the value.
Throws: IOException if there is an I/O problem.
Parameters: bytes the bytes.
Throws: IOException if there is an I/O problem.
Parameters: bytes the bytes. off the start offset in the data. len the number of bytes to write.
Throws: IOException if there is an I/O problem.