Skip to content

Instantly share code, notes, and snippets.

View willparsons's full-sized avatar

willparsons

  • United Kingdom
View GitHub Profile
@willparsons
willparsons / MVCExample.java
Last active November 30, 2021 21:34
MVC JavaFX example
// Model
public class Model {
private final StringProperty name;
public Model() {
name = new SimpleStringProperty();
}
public StringProperty getNameProperty() {
return name;