Interface GroupDetailsView
-
- All Superinterfaces:
LceView,MvpLceView,MvpView
- All Known Implementing Classes:
GroupDetailsActivity
public interface GroupDetailsView extends LceView
MvpViewclass ofGroupDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidshowFailedJoinGroupToast(java.lang.String error)Notifies the view to show a failed toast for join group requestvoidshowFailedLeaveGroupToast(java.lang.String error)Notifies the view to show a failed toast for leave group requestvoidshowGroupMembersList(java.util.List<Member> members, int totalEntries)Notifies the view when GET group members API was successfulvoidshowJoinGroupToast()Notifies the view to show a successful toast for join group requestvoidshowLeaveGroupToast()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
-
-