Tagged Questions
3
votes
3answers
181 views
In a unit test perspective: should the view specify presenter or the other way around in GWT MVP?
In tutorials on GWT Google uses to different approaches to do MVP, either the View specifies the Presenter or the Presenter specifies the View. The first one is used when using Activities and Places.
...
1
vote
1answer
137 views
Model View Presenter - how to implement complex Properties in an IView interace
I am finding it difficult understanding how best to implement 'IView' interface properties which are not simple types, and was wondering how others approach this in a Model View Presenter application.
...
1
vote
2answers
670 views
Derived Interface with derived interface member
I have 2 base interfaces, IViewBase (which all views will implement) and IPresenterBase (which all presenters will implement):
public interface IViewBase { }
public interface IPresenterBase
{
...
0
votes
1answer
401 views
GWT & MVP - Best practises for displaying/editing complex objects?
All the GWT / MVP examples I've learned about seem too simplistic to give a clear view what best practises are regarding displaying and handling slightly more complex model objects.
For example, most ...
-1
votes
1answer
68 views
GWT with MVP: How to communicate between 2 views?
i use the MVP-Pattern in GWT.
I have developed a GWT-TabPanel. Each Tab has his own Presenter and his own view. But now i want to use some Datas from ViewX in ViewY.
Is there a simple way to realize ...