HomeSort by relevance Sort by last modified time
    Searched refs:mailboxes (Results 1 - 3 of 3) sorted by null

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
MailboxList.java 31 private ArrayList mailboxes; field in class:MailboxList
34 * @param mailboxes An ArrayList that contains only Mailbox objects.
35 * @param dontCopy true iff it is not possible for the mailboxes ArrayList to be modified by someone else.
37 public MailboxList(ArrayList mailboxes, boolean dontCopy) {
38 if (mailboxes != null)
39 this.mailboxes = (dontCopy ? mailboxes : (ArrayList) mailboxes.clone());
41 this.mailboxes = new ArrayList(0);
48 return mailboxes.size();
    [all...]
Group.java 25 * A named group of zero or more mailboxes.
35 * @param mailboxes The mailboxes in this group.
37 public Group(String name, MailboxList mailboxes) {
39 this.mailboxList = mailboxes;
50 * Returns the mailboxes in this group.
  /packages/apps/Email/src/com/android/email/
MessagingController.java 203 * Lightweight class for capturing local mailboxes in an account. Just the columns
1151 Cursor mailboxes = resolver.query(Mailbox.CONTENT_URI, Mailbox.ID_PROJECTION, local
    [all...]

Completed in 79 milliseconds