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
Display
interface inside the presenter, - My view implements my
Presenter.Display
interface.
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