mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-22 21:06:09 +03:00
Add some JavaDoc
This commit is contained in:
parent
6ff469d455
commit
8a798ce664
2 changed files with 5 additions and 0 deletions
|
@ -71,6 +71,7 @@ public class NotesDatabaseTest {
|
|||
assertEquals(3, idMapOfFirstAccount.size());
|
||||
assertEquals(Long.valueOf(1L), idMapOfFirstAccount.get(1001L));
|
||||
assertEquals(Long.valueOf(3L), idMapOfFirstAccount.get(1003L));
|
||||
assertEquals(Long.valueOf(5L), idMapOfFirstAccount.get(1005L));
|
||||
|
||||
final Map<Long, Long> idMapOfSecondAccount = db.getIdMap(secondAccount.getId());
|
||||
assertEquals(1, idMapOfSecondAccount.size());
|
||||
|
|
|
@ -16,6 +16,10 @@ import it.niedermann.owncloud.notes.persistence.entity.CategoryWithNotesCount;
|
|||
import it.niedermann.owncloud.notes.persistence.entity.Note;
|
||||
import it.niedermann.owncloud.notes.shared.model.DBStatus;
|
||||
|
||||
/**
|
||||
* Each method starting with <code>search</code> will return only a partial {@link Note} without any
|
||||
* {@link Note#eTag}, {@link Note#status}, {@link Note#content} or {@link Note#scrollY} for performance reasons.
|
||||
*/
|
||||
@SuppressWarnings("JavadocReference")
|
||||
@Dao
|
||||
public interface NoteDao {
|
||||
|
|
Loading…
Reference in a new issue