package java.io;

public class ByteArrayOutputStream extends OutputStream
{
 protected byte[] buf;
 protected int count;

 public ByteArrayOutputStream()
 {
 }
 
 public ByteArrayOutputStream(int)
 {
 }
 
 public void write(int)
 {
 }
 
 public void write(byte[], int, int)
 {
 }
 
 public void reset()
 {
 }
 
 public byte[] toByteArray()
 {
  return null;
 }
 
 public int size()
 {
  return 0;
 }
 
 public String toString()
 {
  return null;
 }
 
 public void close() throws IOException
 {
 }
 
}