mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
20 lines
410 B
Java
20 lines
410 B
Java
package model;
|
|
|
|
import javafx.beans.property.SimpleStringProperty;
|
|
import javafx.beans.property.StringProperty;
|
|
|
|
public class Data {
|
|
private StringProperty fooProp = new SimpleStringProperty("");
|
|
|
|
public StringProperty fooPropProperty() {
|
|
return fooProp;
|
|
}
|
|
|
|
public String getFooProp() {
|
|
return fooProp.getValue();
|
|
}
|
|
|
|
public void setFooProp(String value) {
|
|
fooProp.setValue(value);
|
|
}
|
|
} |