net.sourceforge.apphere.util
Class NullOutputStream

java.lang.Object
  extended byjava.io.OutputStream
      extended bynet.sourceforge.apphere.util.NullOutputStream

public class NullOutputStream
extends java.io.OutputStream

Author:
Dewi Roberts http://www.essex.ac.uk/chimera NullOutputStream.java Created 09-Apr-2003 net.sourceforge.apphere.util

Constructor Summary
NullOutputStream()
           
 
Method Summary
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
 void write(int b)
           
 
Methods inherited from class java.io.OutputStream
close, flush
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullOutputStream

public NullOutputStream()
Method Detail

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(byte[], int, int)

write

public void write(byte[] b)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(byte[])

write

public void write(int b)
           throws java.io.IOException
Throws:
java.io.IOException
See Also:
OutputStream.write(int)