Created
August 28, 2017 11:24
-
-
Save vsay01/7ef41c5985d2223dbba91b3ba0237ab6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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