| Package | Description |
|---|---|
| com.gwtplatform.mvp.client | |
| com.gwtplatform.mvp.client.gin |
| Modifier and Type | Class and Description |
|---|---|
class |
Presenter<V extends View,Proxy_ extends Proxy<?>>
A singleton presenter, the basic building block of the
model-view-presenter architecture.
|
class |
PresenterWidget<V extends View>
A presenter that does not have to be a singleton.
|
class |
TabContainerPresenter<V extends View & TabPanel,Proxy_ extends Proxy<?>>
A
Presenter that can display many tabs and the content of one of these tabs. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
PopupView
The interface for
View classes that is meant to be displayed as a
popup, like a GWT PopupPanel or a
DialogBox. |
interface |
TabView
|
| Modifier and Type | Class and Description |
|---|---|
class |
PopupViewImpl
A simple implementation of
PopupView that can be used when the widget
returned by ViewImpl.asWidget() inherits from PopupPanel. |
class |
PopupViewWithUiHandlers<C extends UiHandlers>
Base class for a
PopupView that implements the HasUiHandlers
interface. |
static class |
RootPresenter.RootView
RootPresenter's view. |
class |
ViewImpl
A simple implementation of
View that simply disregard every call to
ViewImpl.setInSlot(Object, IsWidget), ViewImpl.addToSlot(Object, IsWidget), and
ViewImpl.removeFromSlot(Object, IsWidget). |
class |
ViewWithUiHandlers<C extends UiHandlers>
Base class for a
View that implements the HasUiHandlers
interface. |
| Modifier and Type | Method and Description |
|---|---|
protected <P extends Presenter<?,?>,V extends View,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenter(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl,
Class<Proxy_> proxy)
Convenience method for binding a singleton presenter with its view and its
proxy, when using automatically generated proxy classes.
|
protected <P extends Presenter<?,?>,V extends View,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenter(Class<P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl,
Class<Proxy_> proxy)
Convenience method for binding a singleton presenter with its view and its
proxy, when using automatically generated proxy classes.
|
protected <P extends Presenter<?,?>,V extends View,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenterCustomProxy(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl,
Class<Proxy_> proxy,
Class<? extends Proxy_> proxyImpl)
Convenience method for binding a singleton presenter with its view and its
proxy, when using custom-made proxy classes.
|
protected <P extends Presenter<?,?>,V extends View,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenterCustomProxy(Class<P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl,
Class<Proxy_> proxy,
Class<? extends Proxy_> proxyImpl)
Convenience method for binding a singleton presenter with its view and its
proxy, when using custom-made proxy classes.
|
protected <P extends PresenterWidget<?>,V extends View> |
AbstractPresenterModule.bindPresenterWidget(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl)
Convenience method for binding a non-singleton
PresenterWidget with
its View. |
protected <P extends PresenterWidget<?>,V extends View> |
AbstractPresenterModule.bindPresenterWidget(Class<P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl)
Convenience method for binding a non-singleton
PresenterWidget with
its View. |
protected <V extends View> |
AbstractPresenterModule.bindSharedView(Class<V> view,
Class<? extends V> viewImpl)
Bind a view interface to its implementation in a non-singleton manner.
|
protected <P extends PresenterWidget<?>,V extends View> |
AbstractPresenterModule.bindSingletonPresenterWidget(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl)
Convenience method for binding a singleton
PresenterWidget with its
View. |
protected <P extends PresenterWidget<?>,V extends View> |
AbstractPresenterModule.bindSingletonPresenterWidget(Class<P> presenterImpl,
Class<V> view,
Class<? extends V> viewImpl)
Convenience method for binding a singleton
PresenterWidget with its
View. |
Copyright © 2010–2014 Arcbees. All rights reserved.