public class RatingPresenter extends Presenter<RatingPresenter.MyView,RatingPresenter.MyProxy> implements RatingUiHandlers, RatingAddedEvent.RatingAddedHandler, ActionBarEvent.ActionBarHandler
Modifier and Type | Class and Description |
---|---|
static interface |
RatingPresenter.MyProxy |
static interface |
RatingPresenter.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(RatingDto ratingDto) |
void |
onRatingAdded(RatingAddedEvent event) |
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, useManualReveal
addHandler, addRegisteredHandler, addToPopupSlot, addToPopupSlot, addToSlot, addVisibleHandler, asWidget, clearSlot, fireEvent, getEventBus, getView, getWidget, isVisible, onHide, onReset, removeFromPopupSlot, removeFromSlot, setInSlot, setInSlot
isBound, onUnbind, registerHandler
public void onActionEvent(ActionBarEvent event)
onActionEvent
in interface ActionBarEvent.ActionBarHandler
public void onCreate()
onCreate
in interface RatingUiHandlers
public void onDelete(RatingDto ratingDto)
onDelete
in interface RatingUiHandlers
public void onRatingAdded(RatingAddedEvent event)
onRatingAdded
in interface RatingAddedEvent.RatingAddedHandler
protected void onReveal()
PresenterWidget
PresenterWidget.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<RatingPresenter.MyView>
protected void onBind()
HandlerContainerImpl
HandlerContainerImpl.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 HandlerContainerImpl
protected void revealInParent()
Presenter
RevealContentEvent
,
a RevealRootContentEvent
or a RevealRootLayoutContentEvent
.revealInParent
in class Presenter<RatingPresenter.MyView,RatingPresenter.MyProxy>
Copyright © 2010-2014 ArcBees. All Rights Reserved.