home *** CD-ROM | disk | FTP | other *** search
- package netscape.applet;
-
- import java.io.BufferedOutputStream;
- import java.io.PrintStream;
-
- class Console {
- ConsoleFrame frame = new ConsoleFrame(this);
-
- Console() {
- System.in = new ConsoleInputStream(this);
- System.out = new PrintStream(new BufferedOutputStream(new ConsoleOutputStream(this), 128), true);
- System.err = System.out;
- }
-
- void reset() {
- this.frame.reset();
- }
-
- void show() {
- if (!this.frame.isVisible()) {
- this.frame.show();
- MozillaAppletContext.setConsoleState(1);
- }
-
- }
-
- void hide() {
- if (this.frame.isVisible()) {
- this.frame.hide();
- MozillaAppletContext.setConsoleState(0);
- }
-
- }
- }
-