Back to project page gonzomemory.
The source code is released under:
Apache License
If you think the Android project gonzomemory 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 de.janpeuker.apps.gonzonotes.provider; /*ww w. ja v a 2 s . co m*/ import android.net.Uri; public class NotesContract { public static final String MIME_ALLNOTES = "vnd.android.cursor.dir/de.janpeuker.apps.gonzonotes.provider.notes"; public static final String MIME_NOTE = "vnd.android.cursor.item/de.janpeuker.apps.gonzonotes.provider.notes"; public static final String KEY_ID = "_id"; public static final String KEY_NOTE_ID = "nodeId"; public static final String KEY_NOTE_CONTENT_TEXT = "nodeContentText"; public static final Uri AUTHORITY_URI = Uri.parse("content://de.janpeuker.apps.gonzonotes.provider/notes"); }