Back to project page android-calendar-drafts.
The source code is released under:
Apache License
If you think the Android project android-calendar-drafts 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.touchableheroes.drafts.calendar.cmd; /*from w ww.ja va2s . c o m*/ import android.content.ContentResolver; import android.content.Context; /** * @author asiebert */ public abstract class ContextCmd { private final Context ctx; public ContextCmd(Context ctx) { this.ctx = ctx; } public ContentResolver getContentResolver() { return ctx.getContentResolver(); } }