Created
October 15, 2018 12:47
-
-
Save singhsegv/2703babacb40090db4026f466c615e45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ${packageName}; | |
public class ${className}Presenter extends DemoBasePresenter<${className}Contract.View> implements ${className}Contract.Presenter { | |
@Inject | |
public ${className}Presenter(${className}Contract.View view){ | |
super(view); | |
} | |
@Override | |
public void subscribe() { | |
} | |
@Override | |
public void unSubscribe() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment