Modifier and Type | Class and Description |
---|---|
class |
ApplicationPresenter |
Modifier and Type | Class and Description |
---|---|
class |
CarsPresenter |
Modifier and Type | Class and Description |
---|---|
class |
CarPresenter |
class |
RootCarPresenter |
Modifier and Type | Class and Description |
---|---|
class |
LoginPresenter |
Modifier and Type | Class and Description |
---|---|
class |
ManufacturerDetailPresenter |
class |
ManufacturerPresenter |
Modifier and Type | Class and Description |
---|---|
class |
RatingDetailPresenter |
class |
RatingPresenter |
Modifier and Type | Class and Description |
---|---|
class |
ReportPresenter |
Modifier and Type | Class and Description |
---|---|
class |
StatisticsPresenter |
Modifier and Type | Class and Description |
---|---|
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 | Method and Description |
---|---|
protected <P extends Presenter<?,?>,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenter(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<Proxy_> proxy)
Convenience method for binding a singleton presenter with its proxy, when
using automatically generated proxy classes and non-singleton views.
|
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<?,?>,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenter(Class<P> presenterImpl,
Class<Proxy_> proxy)
Convenience method for binding a singleton presenter with its proxy, when
using automatically generated proxy classes and non-singleton views.
|
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<?,?>,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenterCustomProxy(Class<P> presenter,
Class<? extends P> presenterImpl,
Class<Proxy_> proxy,
Class<? extends Proxy_> proxyImpl)
Convenience method for binding a singleton presenter with its proxy, when
using custom-made proxy classes and non-singleton views.
|
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<?,?>,Proxy_ extends Proxy<P>> |
AbstractPresenterModule.bindPresenterCustomProxy(Class<P> presenterImpl,
Class<Proxy_> proxy,
Class<? extends Proxy_> proxyImpl)
Convenience method for binding a singleton presenter with its proxy, when
using custom-made proxy classes and non-singleton views.
|
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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NonLeafTabContentProxy<P extends Presenter<?,?>>
The interface for the
Proxy of a Presenter that does not have a name token and
that can be displayed within a
TabContainerPresenter 's main area. |
class |
NonLeafTabContentProxyImpl<T extends Presenter<?,?>> |
interface |
Proxy<P extends Presenter<?,?>>
The interface for light-weight singleton classes that listens for events
before the full
Presenter is instantiated. |
class |
ProxyImpl<P extends Presenter<?,?>> |
interface |
ProxyPlace<P extends Presenter<?,?>>
|
class |
ProxyPlaceAbstract<P extends Presenter<?,?>,Proxy_ extends Proxy<P>>
|
class |
ProxyPlaceImpl<P extends Presenter<?,?>>
|
class |
RevealContentHandler<T extends Presenter<?,?>>
This is the handler class for
RevealContentEvent . |
interface |
TabContentProxy<P extends Presenter<?,?>>
The interface for the
Proxy of a Presenter that can
be displayed within a
TabContainerPresenter 's main area. |
interface |
TabContentProxyPlace<P extends Presenter<?,?>>
The interface for the
Proxy of a Presenter that has
a name token and can be displayed within a
TabContainerPresenter 's main area. |
class |
TabContentProxyPlaceImpl<T extends Presenter<?,?>>
A useful mixing class to define a
TabContentProxy that is also a
Place . |
Modifier and Type | Method and Description |
---|---|
Presenter<?,?> |
RevealRootLayoutContentEvent.getContent() |
Presenter<?,?> |
RevealRootContentEvent.getContent() |
Presenter<?,?> |
RevealContentEvent.getContent() |
Modifier and Type | Method and Description |
---|---|
static <T> ManualRevealCallback<T> |
ManualRevealCallback.create(Presenter<?,? extends ProxyPlace<?>> presenter,
AsyncCallback<T> callback)
Creates an
ManualRevealCallback that is attached to another AsyncCallback . |
static void |
RevealContentEvent.fire(HasHandlers source,
GwtEvent.Type<RevealContentHandler<?>> type,
Presenter<?,?> content)
Fires a
RevealContentEvent with a specific GwtEvent.Type
into a source that has access to an EventBus . |
static void |
RevealRootLayoutContentEvent.fire(HasHandlers source,
Presenter<?,?> content)
Fires a
RevealRootLayoutContentEvent
into a source that has access to an EventBus . |
static void |
RevealRootContentEvent.fire(HasHandlers source,
Presenter<?,?> content)
Fires a
RevealRootContentEvent
into a source that has access to an EventBus . |
void |
ProxyPlaceAbstract.manualReveal(Presenter<?,?> presenter) |
void |
ProxyPlace.manualReveal(Presenter<?,?> presenter)
Manually reveals a presenter.
|
Modifier and Type | Method and Description |
---|---|
void |
ProxyRaw.getRawPresenter(NotifyingAsyncCallback<Presenter<?,?>> callback)
Get the associated
Presenter . |
void |
ProxyPlaceAbstract.getRawPresenter(NotifyingAsyncCallback<Presenter<?,?>> callback) |
void |
ProxyImpl.getRawPresenter(NotifyingAsyncCallback<Presenter<?,?>> callback) |
Constructor and Description |
---|
ManualRevealCallback(Presenter<?,? extends ProxyPlace<?>> presenter)
Creates an
ManualRevealCallback that is not attached to another AsyncCallback . |
RevealContentEvent(GwtEvent.Type<RevealContentHandler<?>> type,
Presenter<?,?> content) |
RevealRootContentEvent(Presenter<?,?> content) |
RevealRootLayoutContentEvent(Presenter<?,?> content) |
Copyright © 2010-2014 ArcBees. All Rights Reserved.