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) 

Source Link

Document

The constructor of StringProperty

Usage

From source file:org.kordamp.javatrove.example04.model.AppModel.java

public StringProperty organizationProperty() {
    if (organization == null) {
        organization = new SimpleStringProperty(this, "organization");
    }//from   ww w .  j  av  a2s.c  om
    return organization;
}