List of usage examples for javafx.beans.property Property unbind
void unbind();
From source file:net.sourceforge.pmd.util.fxdesigner.util.DesignerUtil.java
/** Like rewire, with no initialisation. */ public static <T> void rewire(Property<T> underlying, ObservableValue<? extends T> source) { underlying.unbind(); underlying.bind(source); // Bindings are garbage collected after the popup dies }