Searched defs:body (Results 1 - 6 of 6) sorted by relevance

/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
H A DNotesDbAdapter.java40 public static final String KEY_BODY = "body";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
117 * @param body the body of the note
120 public long createNote(String title, String body) { argument
123 initialValues.put(KEY_BODY, body);
173 * specified using the rowId, and it is altered to use the title and body
178 * @param body value to set note body t
181 updateNote(long rowId, String title, String body) argument
[all...]

Completed in 247 milliseconds