Interface GroupDetailsView
-
- All Superinterfaces:
LceView
,MvpLceView
,MvpView
- All Known Implementing Classes:
GroupDetailsActivity
public interface GroupDetailsView extends LceView
MvpView
class ofGroupDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showFailedJoinGroupToast(java.lang.String error)
Notifies the view to show a failed toast for join group requestvoid
showFailedLeaveGroupToast(java.lang.String error)
Notifies the view to show a failed toast for leave group requestvoid
showGroupMembersList(java.util.List<Member> members, int totalEntries)
Notifies the view when GET group members API was successfulvoid
showJoinGroupToast()
Notifies the view to show a successful toast for join group requestvoid
showLeaveGroupToast()
Notifies the view to show a successful toast for leave group request-
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
-
-
-
-
Method Detail
-
showJoinGroupToast
void showJoinGroupToast()
Notifies the view to show a successful toast for join group request
-
showFailedJoinGroupToast
void showFailedJoinGroupToast(java.lang.String error)
Notifies the view to show a failed toast for join group request- Parameters:
error
- Error message
-
showLeaveGroupToast
void showLeaveGroupToast()
Notifies the view to show a successful toast for leave group request
-
showFailedLeaveGroupToast
void showFailedLeaveGroupToast(java.lang.String error)
Notifies the view to show a failed toast for leave group request- Parameters:
error
- Error message
-
-