home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 July / Chip_1998-07_cd.bin / zkuste / JBuilder / BDK / Win / bdk_sep97.exe / _SETUP.1 / InputStreamProducer.java < prev    next >
Encoding:
Java Source  |  1997-09-10  |  336 b   |  16 lines

  1. package sun.beanbox;
  2.  
  3. /**
  4.  * An interface for producing an input stream on demand
  5.  *
  6.  * A null means that the resource is not (or no longer) available.
  7.  * So, a one-shot producer may provide a value the first time but not
  8.  * after that.
  9.  */
  10.  
  11. import java.io.*;
  12.  
  13. public interface InputStreamProducer {
  14.     InputStream getInputStream();
  15. }
  16.