280281282283284285286287288289
public void clearOutput() { this.getMainWindow().getOutputPane().clear(); } public void output(String str) { EncogOutputPanel pane = this.getMainWindow().getOutputPane(); if (pane != null) { pane.output(str); } }
287288289290291292293294295296
pane.output(str); } } public void outputLine(String str) { EncogOutputPanel pane = this.getMainWindow().getOutputPane(); if (pane != null) { pane.outputLine(str); } }