JavaFX has a concept of observable values that wil...
# tornadofx
r
JavaFX has a concept of observable values that will notify listeners when they change. That call to
.observable()
makes the list
persons
an observable list, so if you were to add or remove a person from the list, the table view would be automatically updated with the change.