home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1998 September / dppcpro0998.iso / Rwc / Sybase / Install.exe / java.z / FileInputStreamProducer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-23  |  412 b   |  18 lines

  1. package powersoft.beanbox;
  2.  
  3. import java.io.FileInputStream;
  4. import java.io.InputStream;
  5. import sun.beanbox.InputStreamProducer;
  6.  
  7. public class FileInputStreamProducer implements InputStreamProducer {
  8.    private FileInputStream stream;
  9.  
  10.    public FileInputStreamProducer(FileInputStream var1) {
  11.       this.stream = var1;
  12.    }
  13.  
  14.    public InputStream getInputStream() {
  15.       return this.stream;
  16.    }
  17. }
  18.