Interface EventDetailsView
-
- All Superinterfaces:
com.cheetahdigital.uikit.architecture.lce.LceView
,com.cheetahdigital.uikit.architecture.lce.MvpLceView
,com.cheetahdigital.uikit.architecture.mvp.MvpView
- All Known Implementing Classes:
EventDetailsActivity
public interface EventDetailsView extends com.cheetahdigital.uikit.architecture.lce.LceView
LceView
class ofEventDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
sendResponseBroadcast()
Notifies the view to initiate a respond broadcastvoid
showEventDetails(Event event)
Notifies the view show the event details using theEvent
passedvoid
showMissingEventDialog(java.lang.String error)
Notifies the view to show the error dialogvoid
showProgressDialog(boolean state)
Show/Hide the progress dialogvoid
showRespondDialog(java.lang.String heading)
Shows the respond dialogvoid
showRespondFailedDialog(java.lang.String error)
Show a failed dialog containing an error description
-
-
-
Method Detail
-
showEventDetails
void showEventDetails(Event event)
Notifies the view show the event details using theEvent
passed- Parameters:
event
-Event
model
-
showMissingEventDialog
void showMissingEventDialog(java.lang.String error)
Notifies the view to show the error dialog- Parameters:
error
- info about the error
-
showRespondDialog
void showRespondDialog(java.lang.String heading)
Shows the respond dialog- Parameters:
heading
- header text used upon showing the dialog
-
showRespondFailedDialog
void showRespondFailedDialog(java.lang.String error)
Show a failed dialog containing an error description- Parameters:
error
- info about the error
-
sendResponseBroadcast
void sendResponseBroadcast()
Notifies the view to initiate a respond broadcast
-
showProgressDialog
void showProgressDialog(boolean state)
Show/Hide the progress dialog- Parameters:
state
-true
to show the dialog, elsefalse
-
-