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; // ww w .ja v a2s . c om import android.database.Cursor; import android.net.Uri; /** * Created by Marlin Gingerich on 2014-03-10. */ public interface StorageAdapter<T> { public Uri insert(T item); public Uri upsert(T item); public int update(T item, String where, String[] selectionArgs); public int delete(String where, String[] selectionArgs); public Cursor query(String[] projection, String selection, String[] selectionArgs, String sortOrder); }