Methods Summary |
---|
public int | describeContents()
return 0;
|
public boolean | equals(java.lang.Object other)
return other instanceof Contact
&& mAddress.equals(((Contact)other).mAddress);
|
public Address | getAddress()
return mAddress;
|
public java.lang.String | getName()
return mName;
|
public Presence | getPresence()
return mPresence;
|
public int | hashCode()
return mAddress.hashCode();
|
public void | setPresence(Presence presence)Set the presence of the Contact. Note that this method is public
but not provide to the user.
mPresence = presence;
|
public void | writeToParcel(android.os.Parcel dest, int flags)
AddressParcelHelper.writeToParcel(dest, mAddress);
dest.writeString(mName);
mPresence.writeToParcel(dest, 0);
|