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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Java Source
|
1997-09-10
|
336 b
|
16 lines
package sun.beanbox;
/**
* An interface for producing an input stream on demand
*
* A null means that the resource is not (or no longer) available.
* So, a one-shot producer may provide a value the first time but not
* after that.
*/
import java.io.*;
public interface InputStreamProducer {
InputStream getInputStream();
}