Hello
I'm developing a website using Google Web Toolkit GWT and I want to use the Model View Presenter design pattern.
I've read that the relation between view and presenter is a one to one relation..
My main page of the website consists of three main parts, or maybe 3 views.
One of them contains a menu, and the required view is displayed according to the chosen item in the menu..
I've downloaded a sample project using MVP
You can download the sample source code from here Large scale application development and MVP - Google Web Toolkit - Google Code
I don't know how to do something like this (display different view at the same page accprding to the selected menuItem) since only one view can be displayed at a time ( the Application Controller decides which view appears)
Thanks in advance :)