Home | History | Annotate | Download | only in accounts

Lines Matching refs:Account

20  * Used to store the Account and the UserId this account is associated with.
25 public Account account;
28 public AccountAndUser(Account account, int userId) {
29 this.account = account;
37 return this.account.equals(other.account)
43 return account.hashCode() + userId;
47 return account.toString() + " u" + userId;