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.LceView
LceView
class ofEventResponseDetailActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
sendResponseBroadcast(long delay)
Send a broadcast for response related updatevoid
showCancelledDialog(java.lang.String heading)
Show dialog for a successful cancellation requestvoid
showEventDetails(EventResponse eventResponse)
Shows the event details usingEventResponse
void
showMissingEventDialog(java.lang.String error)
Show an error dialogvoid
showProgressDialog(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
-true
to show, elsefalse
-
sendResponseBroadcast
void sendResponseBroadcast(long delay)
Send a broadcast for response related update- Parameters:
delay
- how long before the broadcast is executed
-
-