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.LceViewLceViewclass ofEventDetailsActivity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidshowEventDetails(Event event)Show the details using theEventpassedvoidshowSnackError(java.lang.String error)Show a snack view containing the error message passedvoidupdateFavoriteButton(boolean isFavorite)Notifies the view to update the properties of the favorite button
-
-
-
Method Detail
-
showEventDetails
void showEventDetails(Event event)
Show the details using theEventpassed- Parameters:
event- theEventpassed
-
updateFavoriteButton
void updateFavoriteButton(boolean isFavorite)
Notifies the view to update the properties of the favorite button- Parameters:
isFavorite-trueif 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
-
-