Android Open Source - gonzomemory Notes Contract






From Project

Back to project page gonzomemory.

License

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.

Java Source Code

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");

}




Java Source Code List

de.janpeuker.apps.gonzonotes.Constants.java
de.janpeuker.apps.gonzonotes.GonzonotesActivity.java
de.janpeuker.apps.gonzonotes.GonzonotesApplication.java
de.janpeuker.apps.gonzonotes.ParseTransfer.java
de.janpeuker.apps.gonzonotes.mvp.GonzonotesAndroidPresenter.java
de.janpeuker.apps.gonzonotes.mvp.GonzonotesPresenter.java
de.janpeuker.apps.gonzonotes.mvp.GonzonotesViewModel.java
de.janpeuker.apps.gonzonotes.mvp.SharedPreferencesBasedGonzonotesViewModel.java
de.janpeuker.apps.gonzonotes.provider.NotesContract.java
de.janpeuker.apps.gonzonotes.provider.NotesProvider.java