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.cm.model.category.CategoryModel.java

public LongProperty matrixIdProperty() {
    if (matrixIdProperty == null) {
        matrixIdProperty = new SimpleLongProperty(this, COLUMN_NAME__MATRIX_ID, _matrixId);
    }/*from w  ww.ja  v a 2s .  c  om*/
    return matrixIdProperty;
}

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

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this,
                REFLECTION_COMMENT_MODEL__COLUMN_NAME__GENERATION_TIME, _generationTime);
    }//from w  ww  .j ava2 s.  co m
    return generationTimeProperty;
}

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

public LongProperty idProperty() {
    if (idProperty == null) {
        idProperty = new SimpleLongProperty(this, DREAM_MODEL__COLUMN_NAME__ID, _id);
    }//from  ww  w . j  av a  2 s  .c o  m
    return idProperty;
}

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

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

From source file:de.pro.dbw.file.tipofthenight.api.TipOfTheNightModel.java

public LongProperty generationTimeProperty() {
    if (generationTimeProperty == null) {
        generationTimeProperty = new SimpleLongProperty(this,
                TIP_OF_THE_NIGHT_MODEL__COLUMN_NAME__GENERATION_TIME, _generationTime);
    }// ww  w. ja  va 2s . co  m
    return generationTimeProperty;
}

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

public LongProperty parentIdProperty() {
    if (parentIdProperty == null) {
        parentIdProperty = new SimpleLongProperty(this, TOPIC__COLUMN_NAME__ID, _parentId);
    }//from  w  w w . j  a v a2s .c  o m

    return parentIdProperty;
}

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

public LongProperty parentIdProperty() {
    if (parentIdProperty == null) {
        parentIdProperty = new SimpleLongProperty(this, LINK_MAPPING__COLUMN_NAME__PARENT_ID, _parentId);
    }//from ww  w.j  a v a  2s .c o m

    return parentIdProperty;
}

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

public LongProperty idProperty() {
    if (idProperty == null) {
        idProperty = new SimpleLongProperty(this, REFLECTION_MODEL__COLUMN_NAME__ID, _id);
    }/*from ww w. j ava  2  s .co  m*/
    return idProperty;
}

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

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

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

public LongProperty topicIdProperty() {
    if (topicIdProperty == null) {
        topicIdProperty = new SimpleLongProperty(this, EXERCISE__COLUMN_NAME__TOPIC_ID, _topicId);
    }//from  w w w  . j a  v a 2 s  . com

    return topicIdProperty;
}