|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface NoteDAO
Note-related database functions
Method Summary | |
---|---|
void |
createNote(Note note)
Creates a new note record |
void |
deleteNote(Note note)
TODO: Couldn't find a voidNote method Delete note from database. |
Note |
getNote(java.lang.Integer noteId)
Get note by internal identifier |
java.util.List<Note> |
getNotes()
Get all notes |
void |
updateNote(Note note)
Update note |
Method Detail |
---|
java.util.List<Note> getNotes() throws DAOException
DAOException
void createNote(Note note) throws DAOException
note
- to be created
DAOException
Note getNote(java.lang.Integer noteId) throws DAOException
noteId
- Internal integer identifier for requested Note
Note
with given internal identifier
DAOException
void updateNote(Note note) throws DAOException
note
- Note
to be updated
DAOException
void deleteNote(Note note) throws DAOException
note
- Note
to be deleted
DAOException
|
OpenMRS-1.7.x | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |