home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Print Shop Ensemble 3
/
the-print-shop-ensemble-iii.iso
/
worldnet
/
disk2
/
java.z
/
MOZ2_01.ZIP
/
netscape
/
applet
/
ConsoleInputStream.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1996-03-08
|
904 b
|
25 lines
package netscape.applet;
import java.io.IOException;
import java.io.InputStream;
class ConsoleInputStream extends InputStream {
Console console;
ConsoleInputStream(Console console) {
this.console = console;
}
public int read() {
return -1;
}
public int read(byte[] b) {
return -1;
}
public int read(byte[] b, int off, int len) throws IOException {
return -1;
}
}