package java.io;

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

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