Interface GiftcardHistoryView
-
- All Superinterfaces:
EndlessListView,LceView,ListView,MvpLceView,MvpView,RefreshableView
- All Known Implementing Classes:
GiftcardHistoryActivity
public interface GiftcardHistoryView extends EndlessListView
View to be implemented forGiftcardHistoryActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappendTransactionsList(Transactions transactions)This notifies the view to append a list ofTransactionto the existing list fromshowTransactionsList(Transactions)voidshowTransactionsList(Transactions transactions)This notifies the view to show the list ofTransaction-
Methods inherited from interface com.cheetahdigital.uikit.widget.list.EndlessListView
onFinishLoadMore, onLoadMoreFailed
-
Methods inherited from interface com.cheetahdigital.uikit.architecture.lce.LceView
onLoadFailed, onLoadSuccess, setErrorViewClickListener
-
Methods inherited from interface com.cheetahdigital.uikit.architecture.lce.MvpLceView
showContent, showError, showLoading
-
Methods inherited from interface com.cheetahdigital.uikit.architecture.refreshable.RefreshableView
onFinishRefresh, onRefreshFailed
-
-
-
-
Method Detail
-
showTransactionsList
void showTransactionsList(Transactions transactions)
This notifies the view to show the list ofTransaction- Parameters:
transactions-Transactions
-
appendTransactionsList
void appendTransactionsList(Transactions transactions)
This notifies the view to append a list ofTransactionto the existing list fromshowTransactionsList(Transactions)- Parameters:
transactions-Transactionsfor a certain page
-
-