Back to project page kluster-android.
The source code is released under:
Apache License
If you think the Android project kluster-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 com.cs446.kluster.data; /*from w ww.j a va2 s . c o m*/ import android.content.ContentResolver; import android.content.ContentValues; import android.net.Uri; import com.cs446.kluster.models.Event; public class SearchStorageAdapter extends AbstractContentStorageAdapter<Event> { public SearchStorageAdapter(ContentResolver contentResolver) { super(contentResolver); } @Override public Uri getContentUri() { return SearchProvider.CONTENT_URI; } @Override public ContentValues getContentValues(Event event) { return SearchProvider.getContentValues(event); } }