mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
17 lines
398 B
Java
17 lines
398 B
Java
import javafx.beans.property.DoubleProperty;
|
|
import javafx.beans.property.SimpleDoubleProperty;
|
|
public class Test {
|
|
public double getField() {
|
|
return field.get();
|
|
}
|
|
|
|
public DoubleProperty fieldProperty() {
|
|
return field;
|
|
}
|
|
|
|
public void setField(double field) {
|
|
this.field.set(field);
|
|
}
|
|
|
|
private DoubleProperty field = new SimpleDoubleProperty();
|
|
} |