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 void
appendTransactionsList(Transactions transactions)
This notifies the view to append a list ofTransaction
to the existing list fromshowTransactionsList(Transactions)
void
showTransactionsList(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 ofTransaction
to the existing list fromshowTransactionsList(Transactions)
- Parameters:
transactions
-Transactions
for a certain page
-
-