Interface EventResponseDetailView
-
- All Superinterfaces:
com.cheetahdigital.uikit.architecture.lce.LceView,com.cheetahdigital.uikit.architecture.lce.MvpLceView,com.cheetahdigital.uikit.architecture.mvp.MvpView
- All Known Implementing Classes:
EventResponseDetailActivity
public interface EventResponseDetailView extends com.cheetahdigital.uikit.architecture.lce.LceViewLceViewclass ofEventResponseDetailActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsendResponseBroadcast(long delay)Send a broadcast for response related updatevoidshowCancelledDialog(java.lang.String heading)Show dialog for a successful cancellation requestvoidshowEventDetails(EventResponse eventResponse)Shows the event details usingEventResponsevoidshowMissingEventDialog(java.lang.String error)Show an error dialogvoidshowProgressDialog(boolean state)Show/Hide progress dialog
-
-
-
Method Detail
-
showEventDetails
void showEventDetails(EventResponse eventResponse)
Shows the event details usingEventResponse- Parameters:
eventResponse- theEventResponse
-
showMissingEventDialog
void showMissingEventDialog(java.lang.String error)
Show an error dialog- Parameters:
error- info about the error
-
showCancelledDialog
void showCancelledDialog(java.lang.String heading)
Show dialog for a successful cancellation request- Parameters:
heading- text for heading upon showing dialog
-
showProgressDialog
void showProgressDialog(boolean state)
Show/Hide progress dialog- Parameters:
state-trueto show, elsefalse
-
sendResponseBroadcast
void sendResponseBroadcast(long delay)
Send a broadcast for response related update- Parameters:
delay- how long before the broadcast is executed
-
-