home *** CD-ROM | disk | FTP | other *** search
/ PC User 1998 October / Image.iso / BROWSER / CLASSES.ZIP / JAVA / IO / FilterInputStream.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  915 b   |  47 lines

  1. package java.io;
  2.  
  3. public class FilterInputStream extends InputStream {
  4.    // $FF: renamed from: in java.io.InputStream
  5.    protected InputStream field_0;
  6.  
  7.    protected FilterInputStream(InputStream var1) {
  8.       this.field_0 = var1;
  9.    }
  10.  
  11.    public int read() throws IOException {
  12.       return this.field_0.read();
  13.    }
  14.  
  15.    public int read(byte[] var1) throws IOException {
  16.       return this.read(var1, 0, var1.length);
  17.    }
  18.  
  19.    public int read(byte[] var1, int var2, int var3) throws IOException {
  20.       return this.field_0.read(var1, var2, var3);
  21.    }
  22.  
  23.    public long skip(long var1) throws IOException {
  24.       return this.field_0.skip(var1);
  25.    }
  26.  
  27.    public int available() throws IOException {
  28.       return this.field_0.available();
  29.    }
  30.  
  31.    public void close() throws IOException {
  32.       this.field_0.close();
  33.    }
  34.  
  35.    public synchronized void mark(int var1) {
  36.       this.field_0.mark(var1);
  37.    }
  38.  
  39.    public synchronized void reset() throws IOException {
  40.       this.field_0.reset();
  41.    }
  42.  
  43.    public boolean markSupported() {
  44.       return this.field_0.markSupported();
  45.    }
  46. }
  47.