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