Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.drew.lang
Class NullOutputStream  view NullOutputStream download NullOutputStream.java

java.lang.Object
  extended byjava.io.OutputStream
      extended bycom.drew.lang.NullOutputStream

public class NullOutputStream
extends java.io.OutputStream


Constructor Summary
NullOutputStream()
           
 
Method Summary
 void write(int b)
          This method writes a single byte to the output stream.
 
Methods inherited from class java.io.OutputStream
close, flush, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NullOutputStream

public NullOutputStream()
Method Detail

write

public void write(int b)
           throws java.io.IOException
Description copied from class: java.io.OutputStream
This method writes a single byte to the output stream. The byte written is the low eight bits of the int passed and a argument.

Subclasses must provide an implementation of this abstract method