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.LceViewLceViewclass ofEventDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsendResponseBroadcast()Notifies the view to initiate a respond broadcastvoidshowEventDetails(Event event)Notifies the view show the event details using theEventpassedvoidshowMissingEventDialog(java.lang.String error)Notifies the view to show the error dialogvoidshowProgressDialog(boolean state)Show/Hide the progress dialogvoidshowRespondDialog(java.lang.String heading)Shows the respond dialogvoidshowRespondFailedDialog(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 theEventpassed- Parameters:
event-Eventmodel
-
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-trueto show the dialog, elsefalse
-
-