package java.io;

public class ByteArrayInputStream extends InputStream
{
 protected byte[] buf;
 protected int pos;
 protected int mark;
 protected int count;

 public ByteArrayInputStream(byte[] bytes_1)
 {
 }
 
 public ByteArrayInputStream(byte[] bytes_1, int int_1, int int_2)
 {
 }
 
 public int read()
 {
  return 0;
 }
 
 public int read(byte[] bytes_1, int int_1, int int_2)
 {
  return 0;
 }
 
 public long skip(long long_1)
 {
  return 0;
 }
 
 public int available()
 {
  return 0;
 }
 
 public boolean markSupported()
 {
  return false;
 }
 
 public void mark(int int_1)
 {
 }
 
 public void reset()
 {
 }
 
 public void close() throws IOException
 {
 }
 
}