Back to project page cnBeta.
The source code is released under:
Apache License
If you think the Android project cnBeta 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.guest.cnbeta.service; // w w w . java 2 s . c om import android.content.Context; public class BaseService { private Context context; public BaseService(Context context) { setContext(context); } public Context getContext() { return context; } public void setContext(Context context) { this.context = context; } }