I am developing an application in Java, in my GUI I have several JPanels
with a lot of settings on them, this would be the View. There is only one Model in the background of these several JPanels
. Normally, I would Observe the Model from the JPanels
.
I was just wondering, is it good practice to Observe View from the Model? Because, the user changes the View, and this change must effect my Model. Or am I missing some important principle here? Thank you for your help..