home *** CD-ROM | disk | FTP | other *** search
- package powersoft.beanbox;
-
- import java.io.FileInputStream;
- import java.io.InputStream;
- import sun.beanbox.InputStreamProducer;
-
- public class FileInputStreamProducer implements InputStreamProducer {
- private FileInputStream stream;
-
- public FileInputStreamProducer(FileInputStream var1) {
- this.stream = var1;
- }
-
- public InputStream getInputStream() {
- return this.stream;
- }
- }
-