mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
18 lines
396 B
Java
18 lines
396 B
Java
import javafx.beans.property.SimpleStringProperty;
|
|
import javafx.beans.property.StringProperty;
|
|
|
|
public class ControllerStringProperty {
|
|
private StringProperty text = new SimpleStringProperty("");
|
|
|
|
public StringProperty textProperty() {
|
|
return text;
|
|
}
|
|
|
|
public String getText() {
|
|
return text.getValue();
|
|
}
|
|
|
|
public void setText(String text) {
|
|
this.text.setValue(text);
|
|
}
|
|
} |