Home | History | Annotate | Download | only in accounts

Lines Matching refs:Account

24  * Value type that represents an Account in the {@link AccountManager}. This object is
28 public class Account implements Parcelable {
34 if (!(o instanceof Account)) return false;
35 final Account other = (Account)o;
46 public Account(String name, String type) {
57 public Account(Parcel in) {
71 public static final Creator<Account> CREATOR = new Creator<Account>() {
72 public Account createFromParcel(Parcel source) {
73 return new Account(source);
76 public Account[] newArray(int size) {
77 return new Account[size];
82 return "Account {name=" + name + ", type=" + type + "}";