Is there a recommended way to use the Observer pattern in MVP using GWT?
- by Tomislav Nakic-Alfirevic
I am thinking about implementing a user interface according to the MVP pattern using GWT, but have doubts about how to proceed.
These are (some of) my goals:
- the presenter knows nothing about the UI technology (i.e. uses nothing from com.google.*)
- the view knows nothing about the model or the presenter
- the model knows nothing of the view or…