com.judoscript.studio
Interface StudioIODevice

All Known Implementing Classes:
StudioOutputPane

public interface StudioIODevice


Field Summary
static int ERR
           
static int INFO
           
static int LOG
           
static int OUT
           
static int TITLE
           
 
Method Summary
 void close(int type)
           
 void flush(int type)
           
 LinePrintWriter getErrWriter()
           
 java.io.BufferedReader getIn()
           
 LinePrintWriter getLogWriter()
           
 LinePrintWriter getOutWriter()
           
 void write(int type, char[] cbuf, int off, int len)
           
 void write(int type, int ch)
           
 void write(int type, java.lang.String str)
           
 void write(int type, java.lang.String str, int off, int len)
           
 void writeln(int type, java.lang.String str)
           
 

Field Detail

OUT

static final int OUT
See Also:
Constant Field Values

ERR

static final int ERR
See Also:
Constant Field Values

LOG

static final int LOG
See Also:
Constant Field Values

INFO

static final int INFO
See Also:
Constant Field Values

TITLE

static final int TITLE
See Also:
Constant Field Values
Method Detail

close

void close(int type)

flush

void flush(int type)

write

void write(int type,
           int ch)

write

void write(int type,
           char[] cbuf,
           int off,
           int len)

write

void write(int type,
           java.lang.String str,
           int off,
           int len)

write

void write(int type,
           java.lang.String str)

writeln

void writeln(int type,
             java.lang.String str)

getIn

java.io.BufferedReader getIn()

getOutWriter

LinePrintWriter getOutWriter()

getErrWriter

LinePrintWriter getErrWriter()

getLogWriter

LinePrintWriter getLogWriter()