Home | History | Annotate | Download | only in address

Lines Matching defs:mailboxes

31 	private ArrayList<Address> mailboxes;

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<Address> mailboxes, boolean dontCopy) {
38 if (mailboxes != null)
39 this.mailboxes = (dontCopy ? mailboxes : new ArrayList<Address>(mailboxes));
41 this.mailboxes = new ArrayList<Address>(0);
48 return mailboxes.size();
57 return (Mailbox)mailboxes.get(index);