All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class cryptix.util.io.NullOutputStream

java.lang.Object
   |
   +----java.io.OutputStream
           |
           +----cryptix.util.io.NullOutputStream

public class NullOutputStream
extends OutputStream
A null OutputStream, that ignores any data sent to it.

Copyright © 1995-1997 Systemics Ltd on behalf of the Cryptix Development Team.
All rights reserved.

$Revision: 1.1.1.1 $

Author:
Jill Baker

Constructor Index

 o NullOutputStream()
Creates a NullOutputStream, that ignores its output.

Method Index

 o close()
 o flush()
 o write(byte[])
 o write(byte[], int, int)
 o write(int)

Constructors

 o NullOutputStream
 public NullOutputStream()
Creates a NullOutputStream, that ignores its output.

Methods

 o close
 public void close() throws IOException
Overrides:
close in class OutputStream
 o flush
 public void flush() throws IOException
Overrides:
flush in class OutputStream
 o write
 public void write(byte data[]) throws IOException
Overrides:
write in class OutputStream
 o write
 public void write(byte data[],
                   int n,
                   int m) throws IOException
Overrides:
write in class OutputStream
 o write
 public void write(int ch) throws IOException
Overrides:
write in class OutputStream

All Packages  Class Hierarchy  This Package  Previous  Next  Index