List of usage examples for javafx.beans.property Property bindBidirectional
void bindBidirectional(Property<T> other);
From source file:uk.ac.bris.cs.scotlandyard.ui.controller.BaseGame.java
private <T> void setAndBind(Property<T> source, Property<T> target) { target.setValue(source.getValue()); target.bindBidirectional(source); }