List of usage examples for javafx.beans.property IntegerProperty getValue
@Override
public Integer getValue()
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()); }