Example usage for javafx.beans.property SimpleLongProperty SimpleLongProperty

List of usage examples for javafx.beans.property SimpleLongProperty SimpleLongProperty

Introduction

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

Prototype

public SimpleLongProperty(Object bean, String name, long initialValue) 

Source Link

Document

The constructor of LongProperty

Usage

From source file:org.ihtsdo.otf.tcc.ddo.TimeReference.java

public SimpleLongProperty timeProperty() {
    if (timeProperty == null) {
        timeProperty = new SimpleLongProperty(this, "timeInMs", time);
    }/* w  w  w.ja v a 2  s .c o  m*/

    return timeProperty;
}