package java.io;

public class InputStreamReader extends Reader
{

 public InputStreamReader(InputStream)
 {
 }
 
 public InputStreamReader(InputStream, String) throws UnsupportedEncodingException
 {
 }
 
 public int read() throws IOException
 {
  return 0;
 }
 
 public int read(char[], int, int) throws IOException
 {
  return 0;
 }
 
 public long skip(long) throws IOException
 {
  return 0;
 }
 
 public boolean ready() throws IOException
 {
  return false;
 }
 
 public boolean markSupported()
 {
  return false;
 }
 
 public void mark(int) throws IOException
 {
 }
 
 public void reset() throws IOException
 {
 }
 
 public void close() throws IOException
 {
 }
 
}