-
Notifications
You must be signed in to change notification settings - Fork 0
djalexd/gwt-presenter
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
If you're looking for a simple, non-intrusive and intuitive Presenter implementation of MVP,
you've found it. This is all you need to do:
In your .gwt.xml file:
<code><inherits name="com.questdome.gwt.presenter.GwtPresenter"/></code>
In your code:
* code your view:
interface/class SimpleView extends IsWidget {
// operations
}
interface/class SimplePresenter extends Presenter<SimpleView> {
// operations. The presenter can access its bound display through
// #getDisplay() method.
}
That's it. Now your presenters don't know anything about underlying
view implementation, but they communicate through #getDisplay method
provided.About
Really simple MVP presenter
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published