Back to project page android-location-notes.
The source code is released under:
Apache License
If you think the Android project android-location-notes 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.nearsoft.examenboom.database.repository; // w ww. jav a 2s . co m import com.nearsoft.examenboom.common.Note; import java.util.List; /** * Created by jsalcido on 7/27/14. */ public interface NoteRepository { public void saveNote(Note note); public void deleteNote(Note note); public void updateNote(Note note); public List<Note> allNotes(); public Note getNoteById(int id); }