Back to project page MyTwitter-Android.
The source code is released under:
Apache License
If you think the Android project MyTwitter-Android 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 org.fukata.android.mytw.database.dao; // www . j a v a 2 s. c om import org.fukata.android.mytw.database.MyTwitterDB; import android.content.Context; public abstract class BaseDao { protected String TAG; protected static MyTwitterDB con; public BaseDao(Context context) { TAG = this.getClass().getSimpleName(); if (con == null) { con = MyTwitterDB.getInstance(context); } } }