Skip to content

Instantly share code, notes, and snippets.

@vsay01
Created August 28, 2017 11:24
Show Gist options
  • Save vsay01/7ef41c5985d2223dbba91b3ba0237ab6 to your computer and use it in GitHub Desktop.
Save vsay01/7ef41c5985d2223dbba91b3ba0237ab6 to your computer and use it in GitHub Desktop.
package com.template.test.testmvptemplate; // your application package
public interface BaseContract {
interface View<T extends Presenter> {
void setPresenter(T presenter);
}
interface Presenter {
void start();
void stop();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment