Modifier and Type | Interface and Description |
---|---|
static interface |
ApplicationPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
ApplicationMobileView |
class |
ApplicationView |
Modifier and Type | Interface and Description |
---|---|
static interface |
CarsPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
CarsMobileView |
class |
CarsView |
Modifier and Type | Interface and Description |
---|---|
static interface |
CarPresenter.MyView |
static interface |
RootCarPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
CarMobileView |
class |
CarView |
class |
RootCarView |
Modifier and Type | Interface and Description |
---|---|
static interface |
NavigationTabPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
NavigationTabView |
Modifier and Type | Interface and Description |
---|---|
static interface |
LoginPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
LoginMobileView |
class |
LoginView |
Modifier and Type | Interface and Description |
---|---|
static interface |
ManufacturerDetailPresenter.MyView |
static interface |
ManufacturerPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
ManufacturerDetailView |
class |
ManufacturerMobileView |
class |
ManufacturerView |
Modifier and Type | Interface and Description |
---|---|
static interface |
EditManufacturerPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
EditManufacturerView |
Modifier and Type | Interface and Description |
---|---|
static interface |
RatingDetailPresenter.MyView |
static interface |
RatingPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
RatingDetailView |
class |
RatingMobileView |
class |
RatingView |
Modifier and Type | Interface and Description |
---|---|
static interface |
EditRatingPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
EditRatingView |
Modifier and Type | Interface and Description |
---|---|
static interface |
ReportPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
ReportMobileView |
class |
ReportView |
Modifier and Type | Class and Description |
---|---|
class |
StatisticsView |
Modifier and Type | Interface and Description |
---|---|
static interface |
HeaderPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
HeaderMobileView |
class |
HeaderView |
Modifier and Type | Interface and Description |
---|---|
static interface |
MessagesPresenter.MyView |
Modifier and Type | Class and Description |
---|---|
class |
MessagesView |
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.