}
public void attachToServer(@NotNull JstdServer server) {
myStatusView.attachToServer(server);
myConsoleView.clear();
server.addOutputListener(new JstdServerOutputListener() {
@Override
public void onOutputAvailable(@NotNull String text, @NotNull Key outputType) {
ConsoleViewContentType contentType = ConsoleViewContentType.getConsoleViewType(outputType);
myConsoleView.print(text, contentType);
}