MCPcopy Index your code
hub / github.com/beanshell/beanshell / ConsoleInterface

Interface ConsoleInterface

src/bsh/ConsoleInterface.java:39–46  ·  view source on GitHub ↗

The capabilities of a minimal console for BeanShell. Stream I/O and optimized print for output. A simple console may ignore some of these or map them to trivial implementations. e.g. print() with color can be mapped to plain text. @see bsh.util.GUIConsoleInterface

Source from the content-addressed store, hash-verified

37 @see bsh.util.GUIConsoleInterface
38*/
39public interface ConsoleInterface {
40 public Reader getIn();
41 public PrintStream getOut();
42 public PrintStream getErr();
43 public void println( Object o );
44 public void print( Object o );
45 public void error( Object o );
46}
47

Callers 21

InterpreterMethod · 0.65
InterpreterMethod · 0.65
setConsoleMethod · 0.65
readObjectMethod · 0.65
InterpreterMethod · 0.65
setConsoleMethod · 0.65
readObjectMethod · 0.65
mainMethod · 0.65
assertTrueMethod · 0.65
ScriptEngineManagerMethod · 0.65
setAttributeMethod · 0.65
getAttributeMethod · 0.65

Implementers 3

Interpretersrc/bsh/Interpreter.java
AWTConsolesrc/bsh/util/AWTConsole.java
JConsolesrc/bsh/util/JConsole.java

Calls

no outgoing calls

Tested by

no test coverage detected