package java.io;

public class InputStreamReader extends Reader
{

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