Example usage for javafx.beans.property SimpleStringProperty SimpleStringProperty

List of usage examples for javafx.beans.property SimpleStringProperty SimpleStringProperty

Introduction

In this page you can find the example usage for javafx.beans.property SimpleStringProperty SimpleStringProperty.

Prototype

public SimpleStringProperty(Object bean, String name, String initialValue) 

Source Link

Document

The constructor of StringProperty

Usage

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

public StringProperty descriptionProperty() {
    if (descriptionProperty == null) {
        descriptionProperty = new SimpleStringProperty(this, TOPIC__COLUMN_NAME__DESCRIPTION, _description);
    }/*from w ww .  j a va 2 s. c o m*/

    return descriptionProperty;
}

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

public StringProperty titleProperty() {
    if (titleProperty == null) {
        titleProperty = new SimpleStringProperty(this, TERM__COLUMN_NAME__TITLE, _title);
    }/*  ww w .  j  av  a2  s.  co m*/

    return titleProperty;
}

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

public StringProperty urlProperty() {
    if (urlProperty == null) {
        urlProperty = new SimpleStringProperty(this, LINK__COLUMN_NAME__URL, _url);
    }/*from  www.  j a v a2s  .  c  o  m*/

    return urlProperty;
}

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

public StringProperty descriptionProperty() {
    if (descriptionProperty == null) {
        descriptionProperty = new SimpleStringProperty(this, COLUMN_NAME__DESCRIPTION, _description);
    }//from  w  w  w . ja va2s  .  com
    return descriptionProperty;
}

From source file:org.nmrfx.processor.gui.spectra.PeakListAttributes.java

public StringProperty peakListNameProperty() {
    if (peakListName == null) {
        peakListName = new SimpleStringProperty(this, "peakListName", "");
    }/*from  w ww.ja v a2  s.  c om*/
    return peakListName;
}

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

public StringProperty favoriteReasonProperty() {
    if (favoriteReasonProperty == null) {
        favoriteReasonProperty = new SimpleStringProperty(this, DREAM_MODEL__COLUMN_NAME__FAVORITE_REASON,
                _favoriteReason);/*from ww  w .j  a  v  a  2s.  com*/
    }
    return favoriteReasonProperty;
}

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

public StringProperty titleProperty() {
    if (titleProperty == null) {
        titleProperty = new SimpleStringProperty(this, TOPIC__COLUMN_NAME__TITLE, _title);
    }/*from  ww w  . jav  a  2s .  co  m*/

    return titleProperty;
}

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

public StringProperty imageProperty() {
    if (imageProperty == null) {
        imageProperty = new SimpleStringProperty(this, LINK__COLUMN_NAME__IMAGE, _image);
    }/* w  ww .  ja  v  a2s . c  o m*/

    return imageProperty;
}

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

public StringProperty descriptionProperty() {
    if (descriptionProperty == null) {
        descriptionProperty = new SimpleStringProperty(this, DREAM_MODEL__COLUMN_NAME__DESCRIPTION,
                _description);// ww w. java  2  s .  c  om
    }
    return descriptionProperty;
}

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

public StringProperty sourceProperty() {
    if (sourceProperty == null) {
        sourceProperty = new SimpleStringProperty(this, REFLECTION_MODEL__COLUMN_NAME__SOURCE, _source);
    }/* ww  w.  j  a  v a 2s .  c  om*/
    return sourceProperty;
}