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() 

Source Link

Document

The constructor of LongProperty

Usage

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();
}