Skip to content

Instantly share code, notes, and snippets.

@singhsegv
Created October 15, 2018 12:47
Show Gist options
  • Save singhsegv/2703babacb40090db4026f466c615e45 to your computer and use it in GitHub Desktop.
Save singhsegv/2703babacb40090db4026f466c615e45 to your computer and use it in GitHub Desktop.
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