Example usage for javafx.beans.property IntegerProperty getValue

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

Introduction

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

Prototype

@Override
    public Integer getValue() 

Source Link

Usage

From source file:Main.java

public static void main(String[] args) {
    IntegerProperty intProperty = new SimpleIntegerProperty(1024);
    System.out.println("intProperty = " + intProperty);
    System.out.println("intProperty.getValue() = " + intProperty.getValue().intValue());
}