Package org.scijava.ui.console
Interface ConsolePane<C>
-
- All Superinterfaces:
OutputListener,UIComponent<C>
- All Known Implementing Classes:
AbstractConsolePane
public interface ConsolePane<C> extends UIComponent<C>, OutputListener
A panel which displaysstdoutandstderrconsole output.- Author:
- Curtis Rueden
-
-
Field Summary
Fields Modifier and Type Field Description static StringNO_CONSOLE_PROPERTYSystem property which, if set, suppresses the SciJava console window.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappend(OutputEvent event)Appends the given output to the console.voidshow()Makes the console visible.-
Methods inherited from interface org.scijava.console.OutputListener
outputOccurred
-
Methods inherited from interface org.scijava.widget.UIComponent
getComponent, getComponentType
-
-
-
-
Field Detail
-
NO_CONSOLE_PROPERTY
static final String NO_CONSOLE_PROPERTY
System property which, if set, suppresses the SciJava console window.- See Also:
- Constant Field Values
-
-
Method Detail
-
append
void append(OutputEvent event)
Appends the given output to the console.
-
show
void show()
Makes the console visible.
-
-