1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Added some comments

This commit is contained in:
cketti 2011-01-25 01:32:31 +00:00
parent ba24fdc742
commit 57be868668

View File

@ -135,21 +135,27 @@ public class ContactsSdk3_4 extends com.fsck.k9.helper.Contacts
final String[] args; final String[] args;
if (constraint == null) if (constraint == null)
{ {
where = null; where = Contacts.ContactMethods.KIND + " = " + Contacts.KIND_EMAIL;
args = null; args = null;
} }
else else
{ {
where = Contacts.ContactMethods.KIND + " = " + Contacts.KIND_EMAIL + where = Contacts.ContactMethods.KIND + " = " + Contacts.KIND_EMAIL +
" AND" + "(" + " AND " +
"(" +
// Match if name starts with "constraint"
Contacts.People.NAME + " LIKE ?" + Contacts.People.NAME + " LIKE ?" +
") OR (" + " OR " +
// Match if name contains a word that starts with "constraint"
Contacts.People.NAME + " LIKE ?" + Contacts.People.NAME + " LIKE ?" +
") OR (" + " OR " +
// Match if phonetic name starts with "constraint"
Contacts.People.PHONETIC_NAME + " LIKE ?" + Contacts.People.PHONETIC_NAME + " LIKE ?" +
") OR (" + " OR " +
// Match if phonetic name contains a word that starts with "constraint"
Contacts.People.PHONETIC_NAME + " LIKE ?" + Contacts.People.PHONETIC_NAME + " LIKE ?" +
") OR (" + " OR " +
// Match if email address starts with "constraint"
Contacts.ContactMethods.DATA + " LIKE ?" + Contacts.ContactMethods.DATA + " LIKE ?" +
")"; ")";
final String filter = constraint.toString() + "%"; final String filter = constraint.toString() + "%";