JavaFX Displaying properties in controls
问题 I'm working through myself Oracle's JavaFX tutorials. After doing Swing for many years (a long time ago) I'm fascinated by the new smart features, incl. properties. I was surprised to see that these examples (e.g: https://docs.oracle.com/javafx/2/ui_controls/table-view.htm) don't use them in a way what I believe to be "proper". The example creates a Person class with properties as fields: public static class Person { private final SimpleStringProperty firstName; ... But the getters are not