NullOutputStream.java :  » Scripting » jscheme » elf » Java Open Source

Java Open Source » Scripting » jscheme 
jscheme » elf » NullOutputStream.java
package elf;
import java.io.*;

/** An OutputStream that doesn't output anywhere.  Stolen from Renu. */

public class NullOutputStream extends OutputStream {
  public NullOutputStream () {super();}
  public void write (byte [] b) {}
  public void write (byte [] b, int off, int len) {}
  public void write (int b) {}
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.