FileDocCategorySizeDatePackage
Address.javaAPI DocAndroid 1.5 API1563Wed May 06 22:42:46 BST 2009com.android.im.engine

Address

public abstract class Address extends Object
An abstract representation of the address to any addressable entities such as User, Contact list, User Group, etc.

Fields Summary
Constructors Summary
Methods Summary
public booleanequals(java.lang.Object other)

        return other instanceof Address
                && this.getFullName().equals(((Address)other).getFullName());
    
public abstract java.lang.StringgetFullName()
Gets a string representation of this address.

return
a string representation of this address.

public abstract java.lang.StringgetScreenName()
Gets a user friendly screen name of this address object.

return
the screen name.

public inthashCode()

        return getFullName().hashCode();
    
public abstract voidreadFromParcel(android.os.Parcel source)

public abstract voidwriteToParcel(android.os.Parcel dest)