home *** CD-ROM | disk | FTP | other *** search
- 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;
- }
- }
-