Back to project page wifi-auto-forget.
The source code is released under:
GNU General Public License
If you think the Android project wifi-auto-forget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cebesius.wifiautoforget.mvp; // w ww. java 2 s.c o m import android.app.Activity; /** * The base MVP View for use with an Activity */ abstract public class ActivityView { private final Activity activity; protected ActivityView(Activity activity) { this.activity = activity; } protected Activity getActivity() { return activity; } }