Interface EventDateDetailsView
-
- All Superinterfaces:
LceView
,MvpLceView
,MvpView
- All Known Implementing Classes:
EventDateDetailsActivity
public interface EventDateDetailsView extends LceView
LceView
class ofEventDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
showEventDetails(Event event)
Show the details using theEvent
passedvoid
showSnackError(java.lang.String error)
Show a snack view containing the error message passedvoid
updateFavoriteButton(boolean isFavorite)
Notifies the view to update the properties of the favorite button-
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
-
showEventDetails
void showEventDetails(Event event)
Show the details using theEvent
passed- Parameters:
event
- theEvent
passed
-
updateFavoriteButton
void updateFavoriteButton(boolean isFavorite)
Notifies the view to update the properties of the favorite button- Parameters:
isFavorite
-true
if in favorite state, elsefalse
-
showSnackError
void showSnackError(java.lang.String error)
Show a snack view containing the error message passed- Parameters:
error
- content of the error
-
-