public interface Listener<I>
Modifier and Type | Method and Description |
---|---|
Listener<I> |
inputReady(I input)
Tell the class that there is a new input
|
Listener<I> |
logAdded(java.util.List<java.lang.String> logs)
Tell the class that there are new log
|
Listener<I> |
logCleared()
Tell the class that the logs have been deleted
|
Listener<I> |
outputReady(GridOutput output)
Tell the class that there is a new output
|
Listener<I> |
outputReady(TextOutput output)
Tell the class that there is a new output
|
Listener<I> logCleared()
Listener<I> logAdded(java.util.List<java.lang.String> logs)
logs
- the new logsListener<I> inputReady(I input)
input
- the new inputListener<I> outputReady(TextOutput output)
output
- the new outputListener<I> outputReady(GridOutput output)
output
- the new output