Example usage for javafx.beans.property ReadOnlyProperty getValue

List of usage examples for javafx.beans.property ReadOnlyProperty getValue

Introduction

In this page you can find the example usage for javafx.beans.property ReadOnlyProperty getValue.

Prototype

T getValue();

Source Link

Document

Returns the current value of this ObservableValue

Usage

From source file:Book.java

public static void printDetails(ReadOnlyProperty<?> p) {
    String name = p.getName();/* w w  w  . j  a  va  2 s  . c o m*/
    Object value = p.getValue();
    Object bean = p.getBean();
    String beanClassName = (bean == null) ? "null" : bean.getClass().getSimpleName();
    String propClassName = p.getClass().getSimpleName();

    System.out.print(propClassName);
    System.out.print("[Name:" + name);
    System.out.print(", Bean Class:" + beanClassName);
    System.out.println(", Value:" + value + "]");
}