
public class ManufacturerPresenter extends Presenter<ManufacturerPresenter.MyView,ManufacturerPresenter.MyProxy> implements ManufacturerUiHandlers, ActionBarEvent.ActionBarHandler
| Modifier and Type | Class and Description |
|---|---|
static interface |
ManufacturerPresenter.MyProxy |
static interface |
ManufacturerPresenter.MyView |
Presenter.RevealType| Modifier and Type | Method and Description |
|---|---|
void |
onActionEvent(ActionBarEvent event) |
protected void |
onBind()
Lifecycle method called when binding the object.
|
void |
onCreate() |
void |
onDelete(ManufacturerDto manufacturerDto) |
void |
onDetail(ManufacturerDto manufacturerDto) |
void |
onEdit(ManufacturerDto manufacturerDto) |
protected void |
onReveal()
Lifecycle method called whenever this presenter is about to be
revealed.
|
protected void |
revealInParent()
Requests that the presenter reveal itself in its parent presenter.
|
bind, forceReveal, getProxy, getRevealType, getSlot, prepareFromRequest, setRevealType, setSlot, unbind, useManualRevealaddHandler, addRegisteredHandler, addToPopupSlot, addToPopupSlot, addToSlot, addVisibleHandler, asWidget, clearSlot, fireEvent, getEventBus, getView, getWidget, isVisible, onHide, onReset, removeFromPopupSlot, removeFromSlot, setInSlot, setInSlotisBound, onUnbind, registerHandlerpublic void onActionEvent(ActionBarEvent event)
onActionEvent in interface ActionBarEvent.ActionBarHandlerpublic void onDetail(ManufacturerDto manufacturerDto)
onDetail in interface ManufacturerUiHandlerspublic void onEdit(ManufacturerDto manufacturerDto)
onEdit in interface ManufacturerUiHandlerspublic void onCreate()
onCreate in interface ManufacturerUiHandlerspublic void onDelete(ManufacturerDto manufacturerDto)
onDelete in interface ManufacturerUiHandlersprotected void onReveal()
PresenterWidgetPresenterWidget.onReveal() if
you override. Also, do not call directly, see PresenterWidget
for more details on lifecycle methods.
You should override this method to perform any action or initialisation
that needs to be done when the presenter is revealed. Any initialisation
you perform here should be taken down in PresenterWidget.onHide().
Information that needs to be updated whenever the user navigates should
be refreshed in PresenterWidget.onReset().
In a presenter hierarchy, this method is called top-down: first on the
parent presenters, then on the children.onReveal in class PresenterWidget<ManufacturerPresenter.MyView>protected void onBind()
HandlerContainerImplHandlerContainerImpl.onBind(). Also, do
not call directly, call HandlerContainerImpl.bind() instead.
Any event handler should be
initialised here rather than in the constructor. Also, it is good practice to
perform any costly initialisation here.
Handlers registered by calling
HandlerContainerImpl.registerHandler(HandlerRegistration) will be removed
when unbinding. Any other initialisation that takes place here (or as a
side-effect of what is done here) should be taken down in HandlerContainerImpl.onUnbind().
This method will never be invoked more then once, or if it is, the second
time will necessarily be preceded by an invocation of HandlerContainerImpl.onUnbind().onBind in class HandlerContainerImplprotected void revealInParent()
PresenterRevealContentEvent,
a RevealRootContentEvent
or a RevealRootLayoutContentEvent.revealInParent in class Presenter<ManufacturerPresenter.MyView,ManufacturerPresenter.MyProxy>Copyright © 2010-2014 ArcBees. All Rights Reserved.