Interface StaticFilesView
-
- All Superinterfaces:
LceView
,ListView
,MvpLceView
,MvpView
,RefreshableView
- All Known Implementing Classes:
StaticFilesFragment
public interface StaticFilesView extends ListView
View interface for any class wanting to display the list of Static Files using theStaticFilesPresenter
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showStaticFiles(java.util.List<StaticFile> staticFiles)
This will be called by the presenter after successfully receiving the list of Static Files 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
-
showStaticFiles
void showStaticFiles(java.util.List<StaticFile> staticFiles)
This will be called by the presenter after successfully receiving the list of Static Files from the server.- Parameters:
staticFiles
- The list of Static Files.
-
-