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:User.java

public User() {
    userName = new ReadOnlyStringWrapper(this, USERNAME_PROP_NAME, System.getProperty("user.name"));
    password = new SimpleStringProperty(this, PASSWORD_PROP_NAME, "");
}

From source file:Main.java

License:asdf

public User() {
    userName = new ReadOnlyStringWrapper(this, "userName", "ABC");
    password = new SimpleStringProperty(this, "password", "");
}

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

public StringProperty textProperty() {
    if (textProperty == null) {
        textProperty = new SimpleStringProperty(this, REFLECTION_COMMENT_MODEL__COLUMN_NAME__TEXT, _text);
    }/* w w  w. ja v  a  2s  .c om*/
    return textProperty;
}

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

public StringProperty aliasProperty() {
    if (aliasProperty == null) {
        aliasProperty = new SimpleStringProperty(this, LINK__COLUMN_NAME__ALIAS, _alias);
    }//  w ww  .  j  av  a 2 s.c  o  m

    return aliasProperty;
}

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

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

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

public StringProperty descriptionProperty() {
    if (descriptionProperty == null) {
        descriptionProperty = new SimpleStringProperty(this, TERM__COLUMN_NAME__DESCRIPTION, _description);
    }// w  w w.  j a v  a2 s  . c o m

    return descriptionProperty;
}

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

public StringProperty titleProperty() {
    if (titleProperty == null) {
        titleProperty = new SimpleStringProperty(this, COLUMN_NAME__TITLE, _title);
    }//from  w  w  w.j a  v  a2s  .com
    return titleProperty;
}

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

public StringProperty descriptionProperty() {
    if (descriptionProperty == null) {
        descriptionProperty = new SimpleStringProperty(this, LINK__COLUMN_NAME__DESCRIPTION, _description);
    }//from  w  w  w. j  a v  a 2 s.  c om

    return descriptionProperty;
}

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

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

From source file:com.github.naoghuman.cm.model.glossary.GlossaryModel.java

public StringProperty notesProperty() {
    if (notesProperty == null) {
        notesProperty = new SimpleStringProperty(this, COLUMN_NAME__NOTES, _notes);
    }/*from   ww  w.j  a va  2 s  .  co  m*/
    return notesProperty;
}