List of usage examples for javafx.beans.property SimpleLongProperty SimpleLongProperty
public SimpleLongProperty()
From source file:ch.chrigu.datastructures.demo.instances.CollectionInstance.java
private void initProperties() { this.name = new SimpleStringProperty(instance.getClass().getName()); if (collectionOptions != null) { this.parametersProperty = new SimpleStringProperty(collectionOptions.toString()); }/*from ww w . j av a 2s . c o m*/ lastMeasurementInMs = new SimpleLongProperty(); elements = new SimpleStringProperty(); size = new SimpleIntegerProperty(); updateElements(); updateSize(); }