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 void
dismissAddGiftcardDialog()
This notifies the view to dismiss theAddGiftcardDialogFragment
void
finishActivity()
This notifies the view to finish the activityvoid
showAddGiftcardDialog()
This notifies the view to showAddGiftcardDialogFragment
void
showErrorDialog​(java.lang.String error)
This notifies the view to show the dialog with error messagevoid
showLinkSuccessMessage()
This notifies the view to show a message informing the user that adding a gift card to the member's account was successful.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.
-
-
-
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
-
-