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.EndlessListViewEndlessListViewclass ofEventResponseListFragment
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidappendEventResponses(java.util.List<EventResponse> eventResponses, int totalEntries)Append a list ofEventResponseto the current listvoidshowEventResponsesList(java.util.List<EventResponse> eventResponses, int totalEntries)Shows the list ofEventResponsevoidshowSnackbarError(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 ofEventResponseto displaytotalEntries- max number ofEventResponse
-
appendEventResponses
void appendEventResponses(java.util.List<EventResponse> eventResponses, int totalEntries)
Append a list ofEventResponseto the current list- Parameters:
eventResponses- list ofEventResponseto appendtotalEntries- max number ofEventResponse
-
showSnackbarError
void showSnackbarError(java.lang.String error)
Show an error via snack bar- Parameters:
error- info of the error
-
-