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
| 37 | @see bsh.util.GUIConsoleInterface |
| 38 | */ |
| 39 | public 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 |
no outgoing calls
no test coverage detected