interface BaseView<in T>
Defines common methods for every views, this class should be implemented by the base fragment
See Also
com.schibsted.account.ui.ui.BaseFragment
abstract val isActive: Boolean
Return the state of the fragment, this method should be use to know if an UI update could be performed. Call this method before every intention of UI update |
abstract fun setPresenter(presenter: T): Unit
Ties a Presenter to a view |
|
abstract fun showErrorDialog(error: ClientError, errorMessage: String? = null): Unit |
interface FlowView<in T> : BaseView<T> |