Interface EventResponseListView
-
- All Superinterfaces:
com.cheetahdigital.uikit.widget.list.EndlessListView
,com.cheetahdigital.uikit.architecture.lce.LceView
,com.cheetahdigital.uikit.widget.list.ListView
,com.cheetahdigital.uikit.architecture.lce.MvpLceView
,com.cheetahdigital.uikit.architecture.mvp.MvpView
,com.cheetahdigital.uikit.architecture.refreshable.RefreshableView
- All Known Implementing Classes:
EventResponseListFragment
public interface EventResponseListView extends com.cheetahdigital.uikit.widget.list.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
-
-
-
-
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
-
-