Package bsh
Interface ConsoleInterface
-
- All Known Subinterfaces:
GUIConsoleInterface
- All Known Implementing Classes:
AWTConsole,Interpreter,JConsole
public interface ConsoleInterfaceThe 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 Also:
GUIConsoleInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(java.lang.String s)java.io.PrintStreamgetErr()java.io.ReadergetIn()java.io.PrintStreamgetOut()voidprint(java.lang.String s)voidprintln(java.lang.String s)
-