Interface ContentPagesView
- 
- All Superinterfaces:
 LceView,ListView,MvpLceView,MvpView,RefreshableView
- All Known Implementing Classes:
 ContentPagesFragment
public interface ContentPagesView extends ListView
View interface for any class wanting to display the list of Content Pages using theContentPagesPresenter. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidshowContentPages(java.util.List<ContentPage> contentPages)This will be called by the presenter after successfully receiving the list of Content Pages from the server.- 
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
- 
showContentPages
void showContentPages(java.util.List<ContentPage> contentPages)
This will be called by the presenter after successfully receiving the list of Content Pages from the server.- Parameters:
 contentPages- The list of Content Pages.
 
 - 
 
 -