package java.io;

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

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