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:com.github.naoghuman.abclist.model.ExerciseTerm.java

public LongProperty exerciseIdProperty() {
    if (exerciseIdProperty == null) {
        exerciseIdProperty = new SimpleLongProperty(this, EXERCISE_TERM__COLUMN_NAME__EXERCISE_ID, _exerciseId);
    }/*ww  w . j  av a 2  s .  c o  m*/

    return exerciseIdProperty;
}

From source file:com.github.naoghuman.cm.model.subcategory.SubCategoryModel.java

public LongProperty categoryIdProperty() {
    if (categoryIdProperty == null) {
        categoryIdProperty = new SimpleLongProperty(this, COLUMN_NAME__CATEGORY_ID, _categoryId);
    }/* w  w  w  .j a v  a2  s .  co  m*/
    return categoryIdProperty;
}

From source file:com.github.naoghuman.cm.model.category.CategoryModel.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this, COLUMN_NAME__GENERATION_TIME, _generationTime);
    }/*  www .j  a  va 2s.  co m*/
    return generationTimeProperty;
}

From source file:de.pro.dbw.file.dream.api.DreamModel.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this, DREAM_MODEL__COLUMN_NAME__GENERATION_TIME,
                _generationTime);//from   www  . j  av a  2s. c  o m
    }
    return generationTimeProperty;
}

From source file:com.github.naoghuman.abclist.model.Topic.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this, TOPIC__COLUMN_NAME__GENERATION_TIME,
                _generationTime);/*from  w w  w .  j a va  2s. c  o m*/
    }
    return generationTimeProperty;
}

From source file:com.github.naoghuman.abclist.model.Exercise.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this, EXERCISE__COLUMN_NAME__GENERATION_TIME,
                _generationTime);//from  ww w.  j av a  2 s  .  c om
    }
    return generationTimeProperty;
}

From source file:com.github.naoghuman.abclist.model.ExerciseTerm.java

public LongProperty termIdProperty() {
    if (termIdProperty == null) {
        termIdProperty = new SimpleLongProperty(this, EXERCISE_TERM__COLUMN_NAME__TERM_ID, _termId);
    }//from  w  ww.  jav  a 2s . com

    return termIdProperty;
}

From source file:com.github.naoghuman.abclist.model.LinkMapping.java

public LongProperty childIdProperty() {
    if (childIdProperty == null) {
        childIdProperty = new SimpleLongProperty(this, LINK_MAPPING__COLUMN_NAME__CHILD_ID, _childId);
    }//from w  w  w.j  a  va 2  s .  co  m

    return childIdProperty;
}

From source file:com.github.naoghuman.abclist.model.Exercise.java

public LongProperty finishedTimeProperty() {
    if (finishedTimeProperty == null) {
        finishedTimeProperty = new SimpleLongProperty(this, EXERCISE__COLUMN_NAME__FINISHED_TIME,
                _finishedTime);/*w  w  w.  ja  v a2 s.  c om*/
    }
    return finishedTimeProperty;
}

From source file:de.pro.dbw.file.reflection.api.ReflectionModel.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this, REFLECTION_MODEL__COLUMN_NAME__GENERATION_TIME,
                _generationTime);// w  ww. ja v a2  s  .  c  o m
    }
    return generationTimeProperty;
}