Model View Presenter: Being unoriginal
Well, apperantly my last post about agile UI wasn't breaking any new ground, here are some pointers regarding it:
Model View Presenter - Matt Berther, Here is a good description, from the comments of the post
The difference between MVP and class MVC is that in MVC the Controller changes the Model or the View and the View gets data from the Model. The model also updates the view when data changes.
Using MVP, the View only communicates with the Presenter. The presenter then communicates with both the View and the Model.
Posted by Matt Berther at January 14, 2005
Model View Presenter - Martin Fowler
More on Implementing an Interface in the UI, or the 7-layer system - Chris McKenzie
Comments
Comment preview