textbender.g.io
Class OutputStream0

java.lang.Object
  extended by java.io.OutputStream
      extended by OutputStream0
All Implemented Interfaces:
Closeable, Flushable

public class OutputStream0
extends OutputStream

Null implementation of an output stream.


Constructor Summary
OutputStream0()
           
 
Method Summary
 void close()
          Does nothing.
 void flush()
          Does nothing.
static OutputStream0 i()
          A common instance of OutputStream0.
 void write(byte[] b)
          Does nothing.
 void write(byte[] b, int off, int len)
          Does nothing.
 void write(int b)
          Does nothing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OutputStream0

public OutputStream0()
Method Detail

i

public static OutputStream0 i()
A common instance of OutputStream0.


close

public void close()
Does nothing.

Specified by:
close in interface Closeable
Overrides:
close in class OutputStream

flush

public void flush()
Does nothing.

Specified by:
flush in interface Flushable
Overrides:
flush in class OutputStream

write

public void write(byte[] b)
Does nothing.

Overrides:
write in class OutputStream

write

public void write(byte[] b,
                  int off,
                  int len)
Does nothing.

Overrides:
write in class OutputStream

write

public void write(int b)
Does nothing.

Specified by:
write in class OutputStream