All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sitoolkit.wt.gui.infra.TextAreaConsole Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
package org.sitoolkit.wt.gui.infra;

import javafx.application.Platform;
import javafx.scene.control.TextArea;

public class TextAreaConsole implements Console {

    private TextArea textArea;

    private ConsoleListener listener;

    public TextAreaConsole(TextArea textArea) {
        super();
        this.textArea = textArea;
    }

    public TextAreaConsole(TextArea textArea, ConsoleListener listener) {
        super();
        this.textArea = textArea;
        this.listener = listener;
    }

    @Override
    public void append(String str) {
        if (listener != null) {
            listener.readLine(str);
        }

        Platform.runLater(() -> textArea.appendText(str + System.lineSeparator()));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy