Added Android code
[wl-app.git] / Android / app / src / main / java / com / moiseum / wolnelektury / base / mvp / Presenter.java
1 package com.moiseum.wolnelektury.base.mvp;
2
3 /**
4  * Created by Piotr Ostrowski on 13.06.2018.
5  */
6 public class Presenter<V> extends LifecyclePresenter {
7
8     private V view;
9
10     public Presenter(V view) {
11         this.view = view;
12     }
13
14     @Override
15     public void onDestroy() {
16         super.onDestroy();
17         this.view = null;
18     }
19
20     protected V getView() {
21         return view;
22     }
23
24 }