Example usage for javafx.beans.property IntegerProperty isBound

List of usage examples for javafx.beans.property IntegerProperty isBound

Introduction

In this page you can find the example usage for javafx.beans.property IntegerProperty isBound.

Prototype

boolean isBound();

Source Link

Document

Can be used to check, if a Property is bound.

Usage

From source file:Main.java

public static void main(String[] args) {
    // Create three properties
    IntegerProperty x = new SimpleIntegerProperty(10);
    IntegerProperty y = new SimpleIntegerProperty(20);
    IntegerProperty z = new SimpleIntegerProperty(60);

    // Create the binding z = x + y
    z.bind(x.add(y));/*  w  w w .j  ava 2 s  .c o  m*/

    System.out.println("After binding z: Bound = " + z.isBound() + ", z = " + z.get());

    // Change x and y
    x.set(15);
    y.set(19);
    System.out.println("After changing x and y: Bound = " + z.isBound() + ", z = " + z.get());

    // Unbind z
    z.unbind();

    // Will not affect the value of z as it is not bound
    // to x and y anymore
    x.set(100);
    y.set(200);
    System.out.println("After unbinding z: Bound = " + z.isBound() + ", z = " + z.get());
}