Interface GiftcardManageView
-
- All Superinterfaces:
MvpView
- All Known Implementing Classes:
GiftcardManageActivity
public interface GiftcardManageView extends MvpView
View to be implemented forGiftcardManageActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddismissAddGiftcardDialog()This notifies the view to dismiss theAddGiftcardDialogFragmentvoidfinishActivity()This notifies the view to finish the activityvoidshowAddGiftcardDialog()This notifies the view to showAddGiftcardDialogFragmentvoidshowErrorDialog(java.lang.String error)This notifies the view to show the dialog with error messagevoidshowLinkSuccessMessage()This notifies the view to show a message informing the user that adding a gift card to the member's account was successful.voidshowUnlinkSuccessMessage()This notifies the view to show a message informing the user that removing a gift card from the member's account was successful.
-
-
-
Method Detail
-
dismissAddGiftcardDialog
void dismissAddGiftcardDialog()
This notifies the view to dismiss theAddGiftcardDialogFragment
-
showErrorDialog
void showErrorDialog(java.lang.String error)
This notifies the view to show the dialog with error message- Parameters:
error- error message
-
showLinkSuccessMessage
void showLinkSuccessMessage()
This notifies the view to show a message informing the user that adding a gift card to the member's account was successful.
-
showUnlinkSuccessMessage
void showUnlinkSuccessMessage()
This notifies the view to show a message informing the user that removing a gift card from the member's account was successful.
-
showAddGiftcardDialog
void showAddGiftcardDialog()
This notifies the view to showAddGiftcardDialogFragment
-
finishActivity
void finishActivity()
This notifies the view to finish the activity
-
-