Hi All,
I am a newbie to GWT .I am trying to implement my code using MVP.
So following a tutorial
- I have created a
View, - I have created a
Presenter, - I created a
Displayinterface inside the presenter, - My view implements my
Presenter.Displayinterface.
Just for the proof of concept I created a Button in the View. In my presenter I wrote the ClickHandler.
Now when I debug this project I can see my view but the functionality I have assigned in my presenter is not implemented. In other words, the View and the Presenter are not binded together.
How do I bind them? Am I missing something?
Thanks