Public Member Functions | |
ActionStream (JConsole console) | |
synchronized void | actionPerformed (ActionEvent e) |
Invoked when an action occurs. | |
void | close () throws IOException |
Close the stream. | |
int | read () throws IOException |
Reads the next byte of data from the input stream. | |
Protected Attributes | |
JConsole | console |
java.util.List | list |
Private Attributes | |
byte[] | current |
int | pos |
Definition at line 512 of file JConsole.java.
|
Close the stream. Once a stream has been closed, further read(), ready(), mark(), or reset() invocations will throw an IOException. Closing a previously-closed stream, however, has no effect.
Definition at line 538 of file JConsole.java. |
|
Reads the next byte of data from the input stream.
The value byte is returned as an A subclass must provide an implementation of this method.
Definition at line 557 of file JConsole.java. |