|
RoboJDETM v2.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.io.OutputStream
com.ridgesoft.vm.DebugOutputStream
public class DebugOutputStream
An output stream for writing to the debug output display on the host.
This is a singleton class which cannot be constructed directly. Use the VM.getOutputStream method to get the object.
Wrap the output stream in a PrintStream for a standard println output interface.
VM.getDebugOutputStream()
,
PrintStream
Method Summary | |
---|---|
void |
flush()
Flushes all characters to the display. |
void |
write(byte[] bytes)
Writes ASCII bytes to the debug output display. |
void |
write(byte[] bytes,
int off,
int len)
Writes ASCII bytes to the debug output display. |
void |
write(int asciiByte)
Writes one ASCII byte to the debug output display. |
Methods inherited from class java.io.OutputStream |
---|
close |
Methods inherited from class java.lang.Object |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait |
Method Detail |
---|
public void flush() throws IOException
flush
in class OutputStream
IOException
public void write(byte[] bytes) throws IOException
write
in class OutputStream
bytes
- bytes to write
IOException
public void write(byte[] bytes, int off, int len) throws IOException
write
in class OutputStream
bytes
- bytes to writeoff
- offset of starting bytelen
- length to write
IOException
public void write(int asciiByte) throws IOException
write
in class OutputStream
asciiByte
-
IOException
|
RoboJDETM v2.0 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |