Interface EventResponseListView
-
- All Superinterfaces:
EndlessListView
,LceView
,ListView
,MvpLceView
,MvpView
,RefreshableView
- All Known Implementing Classes:
EventResponseListFragment
public interface EventResponseListView extends EndlessListView
EndlessListView
class ofEventResponseListFragment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
appendEventResponses(java.util.List<EventResponse> eventResponses, int totalEntries)
Append a list ofEventResponse
to the current listvoid
showEventResponsesList(java.util.List<EventResponse> eventResponses, int totalEntries)
Shows the list ofEventResponse
void
showSnackbarError(java.lang.String error)
Show an error via snack bar-
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
-
showEventResponsesList
void showEventResponsesList(java.util.List<EventResponse> eventResponses, int totalEntries)
Shows the list ofEventResponse
- Parameters:
eventResponses
- list ofEventResponse
to displaytotalEntries
- max number ofEventResponse
-
appendEventResponses
void appendEventResponses(java.util.List<EventResponse> eventResponses, int totalEntries)
Append a list ofEventResponse
to the current list- Parameters:
eventResponses
- list ofEventResponse
to appendtotalEntries
- max number ofEventResponse
-
showSnackbarError
void showSnackbarError(java.lang.String error)
Show an error via snack bar- Parameters:
error
- info of the error
-
-