Example usage for javafx.beans.binding BooleanBinding getValue

List of usage examples for javafx.beans.binding BooleanBinding getValue

Introduction

In this page you can find the example usage for javafx.beans.binding BooleanBinding getValue.

Prototype

@Override
    public Boolean getValue() 

Source Link

Usage

From source file:com.adobe.ags.curly.test.ErrorBehaviorTest.java

private boolean isBindingTrue(BooleanBinding binding) {
    binding.invalidate();//from   w w  w  .j  a  va2 s . co m
    sync();
    return binding != null && binding.getValue() != null && binding.get();
}