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 var1) {
- this.console = var1;
- }
-
- public int read() {
- return -1;
- }
-
- public int read(byte[] var1) {
- return -1;
- }
-
- public int read(byte[] var1, int var2, int var3) throws IOException {
- return -1;
- }
-
- public int available() throws IOException {
- return -1;
- }
- }
-