I have started experimenting with GWT 2.8 and MVP pattern.
I want to make a simple browser app that sends and fetches data from client to server, that has only one page.
Should I use only one MVP that handles everything in the page?
Or can I use many MVP's that implement different parts of the page?
For example, one MVP would handle the adding updating entities part of the page. The other would handle the presentation of the entities. Another one something else.
Is it a good practise to use many MVPs for the same page?
Thank you very much in advance.