Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;

public class Main {
    public static void main(String[] args) {
        StringProperty password = new SimpleStringProperty("java2s.com");
        password.set("example.com");
        System.out.println("Modified StringProperty " + password.get());
    }
}