How to monitor changes on objects contained in an ObservableList JavaFX
问题 I really have difficulties to understand how the ObservableList object is working in JavaFX. I want to monitor if an object in the List has been modified. So far, I only see that I can monitor if the List , as an entity itself, has been modified... but not the objects within the List : ObservableList<Stuff> myList = FXCollections.<Stuff>observableArrayList(); myList.add(someStuff); myList.addListener((ListChangeListener.Change<? extends Stuff> change) -> { while(change.next()){ if(change