Back to project page UpcomingMoviesMVP.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Defi...
If you think the Android project UpcomingMoviesMVP listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jlmd.android.newfilmsmvp.mvp.presenter; /*from w w w. j a va2 s . c o m*/ import com.jlmd.android.newfilmsmvp.mvp.view.View; /** * Presenter contains the lifecycle of the view * * @author jlmd */ public abstract class Presenter<T extends View> { protected T view; public void setView(T view) { this.view = view; } public abstract void initialize(); public abstract void resume(); public abstract void pause(); public abstract void destroy(); }