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:de.pro.dbw.file.reflection.api.ReflectionModel.java

public StringProperty textProperty() {
    if (textProperty == null) {
        textProperty = new SimpleStringProperty(this, REFLECTION_MODEL__COLUMN_NAME__TEXT, _text);
    }// w ww.  j av  a  2s  .  c  o  m
    return textProperty;
}

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

public StringProperty textProperty() {
    if (textProperty == null) {
        textProperty = new SimpleStringProperty(this, DREAM_MODEL__COLUMN_NAME__TEXT, _text);
    }//w  w  w  .java  2s.co  m
    return textProperty;
}

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

public StringProperty choosenTimeProperty() {
    if (choosenTimeProperty == null) {
        choosenTimeProperty = new SimpleStringProperty(this, EXERCISE__COLUMN_NAME__CHOOSEN_TIME, _choosenTime);
    }/* w  w  w.j  a v a2  s  . co  m*/

    return choosenTimeProperty;
}

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

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

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

public StringProperty titleProperty() {
    if (titleProperty == null) {
        titleProperty = new SimpleStringProperty(this, DREAM_MODEL__COLUMN_NAME__TITLE, _title);
    }//w  w w  .j  a v a2  s  . co  m
    return titleProperty;
}

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

public StringProperty fileNameProperty() {
    if (fileName == null) {
        fileName = new SimpleStringProperty(this, "fileName", "");
    }/* www  . j a v  a2 s  .  c o m*/
    return fileName;
}