Skip to content

Instantly share code, notes, and snippets.

View Denis-Avenger's full-sized avatar

Denis-Avenger

View GitHub Profile
@Denis-Avenger
Denis-Avenger / MyMvpContract.java
Last active October 19, 2018 01:46
MVP example
public interface MyMvpContract {
interface Presenter {
void attachView(MyMvpContract.View view);
void detachView();
//some other code
}
interface View {
//some other code