The MVC pattern wants that Model dispatches change status events to View.
Which is the best implementation of this comunication if the Model is a simple javabean with setter and getter methods?
The MVC pattern wants that Model dispatches change status events to View. Which is
Share
In your bean, allow the registration of PropertyChangeListeners, it’s the designated observer class for change notification on java beans.
Example bean with PropertyChangeListener support: