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

org.sitoolkit.wt.gui.pres.MessageView Maven / Gradle / Ivy

The newest version!
package org.sitoolkit.wt.gui.pres;

import org.sitoolkit.wt.util.infra.util.StrUtils;

import javafx.scene.control.TextArea;

public class MessageView {

	private TextArea textArea;

	public void startMsg(String msg) {
		if (StrUtils.isNotEmpty(textArea.getText())) {
			textArea.appendText(System.lineSeparator());
			textArea.appendText(System.lineSeparator());
			textArea.appendText(System.lineSeparator());
		}
		addMsg(msg);
	}

	public void addMsg(String msg) {
		textArea.appendText(msg);
		textArea.appendText(System.lineSeparator());
	}

	public void setTextArea(TextArea textArea) {
		this.textArea = textArea;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy