List of usage examples for javafx.beans.property SimpleLongProperty SimpleLongProperty
public SimpleLongProperty(Object bean, String name, long initialValue)
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; }