Skip to content

Instantly share code, notes, and snippets.

@soundmasteraj
Forked from singhsegv/Presenter.java.ftl
Created December 3, 2020 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soundmasteraj/87f41e692ebeda8f1d69d654721b8379 to your computer and use it in GitHub Desktop.
Save soundmasteraj/87f41e692ebeda8f1d69d654721b8379 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