Interface EventDateDetailsView
-
- All Superinterfaces:
com.cheetahdigital.uikit.architecture.lce.LceView
,com.cheetahdigital.uikit.architecture.lce.MvpLceView
,com.cheetahdigital.uikit.architecture.mvp.MvpView
- All Known Implementing Classes:
EventDateDetailsActivity
public interface EventDateDetailsView extends com.cheetahdigital.uikit.architecture.lce.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
-
-
-
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
-
-