Bind and unbind IntegerProperty : IntegerProperty « JavaFX « Java
- Java
- JavaFX
- IntegerProperty
Bind and unbind IntegerProperty
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.SimpleIntegerProperty;
public class Main {
public static void main(String[] args) {
IntegerProperty intProperty = new SimpleIntegerProperty(1024);
IntegerProperty otherProperty = new SimpleIntegerProperty(0);
otherProperty.bind(intProperty);
intProperty.set(7168);
otherProperty.unbind();
intProperty.set(8192);
}
}
Related examples in the same category