Interface BadgeMetadataListView
-
- All Superinterfaces:
EndlessListView
,LceView
,ListView
,MvpLceView
,MvpView
,RefreshableView
- All Known Implementing Classes:
BadgeMetadataListFragment
public interface BadgeMetadataListView extends EndlessListView
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
appendBadgeMetadata(java.util.List<Metadatum> metadata, int totalEntries)
Notifies the view to show additionalBadge
metadatavoid
showBadgeMetadata(java.util.List<Metadatum> metadata, int totalEntries)
Notifies the view to showBadge
metadatavoid
showError(java.lang.String error)
Call to API failed.-
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
-
showBadgeMetadata
void showBadgeMetadata(java.util.List<Metadatum> metadata, int totalEntries)
Notifies the view to showBadge
metadata- Parameters:
metadata
- list ofMetadatum
to showtotalEntries
- total number of items
-
appendBadgeMetadata
void appendBadgeMetadata(java.util.List<Metadatum> metadata, int totalEntries)
Notifies the view to show additionalBadge
metadata- Parameters:
metadata
- list ofMetadatum
to showtotalEntries
- total number of items
-
showError
void showError(java.lang.String error)
Call to API failed. Manage the error.- Parameters:
error
- error message from the API.
-
-