mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
19 lines
570 B
Java
19 lines
570 B
Java
import javafx.beans.property.ObjectProperty;
|
|
import javafx.beans.property.SimpleObjectProperty;
|
|
|
|
public class ControllerInExpressionWrapper {
|
|
private ObjectProperty<ControllerInExpression> controller = new SimpleObjectProperty<>(this, "controller");
|
|
|
|
public ObjectProperty<ControllerInExpression> controllerProperty() {
|
|
return controller;
|
|
}
|
|
|
|
public ControllerInExpression getController() {
|
|
return controller.get();
|
|
}
|
|
|
|
public void setController(ControllerInExpression controller) {
|
|
this.controller.set(controller);
|
|
}
|
|
}
|