FileDocCategorySizeDatePackage
ImAddress.javaAPI DocAndroid 1.5 API1696Wed May 06 22:41:16 BST 2009com.google.wireless.gdata.contacts.data

ImAddress

public class ImAddress extends ContactsElement
The ImAddress gdata type

Fields Summary
public static final byte
TYPE_HOME
public static final byte
TYPE_WORK
public static final byte
TYPE_OTHER
public static final byte
PROTOCOL_CUSTOM
public static final byte
PROTOCOL_AIM
public static final byte
PROTOCOL_MSN
public static final byte
PROTOCOL_YAHOO
public static final byte
PROTOCOL_SKYPE
public static final byte
PROTOCOL_QQ
public static final byte
PROTOCOL_GOOGLE_TALK
public static final byte
PROTOCOL_ICQ
public static final byte
PROTOCOL_JABBER
public static final byte
PROTOCOL_NONE
private byte
protocolPredefined
private String
protocolCustom
private String
address
Constructors Summary
Methods Summary
public java.lang.StringgetAddress()

    return address;
  
public java.lang.StringgetProtocolCustom()

    return protocolCustom;
  
public bytegetProtocolPredefined()


     
    return protocolPredefined;
  
public voidsetAddress(java.lang.String address)

    this.address = address;
  
public voidsetProtocolCustom(java.lang.String protocolCustom)

    this.protocolCustom = protocolCustom;
  
public voidsetProtocolPredefined(byte protocolPredefined)

    this.protocolPredefined = protocolPredefined;
  
public voidtoString(java.lang.StringBuffer sb)

    sb.append("ImAddress");
    super.toString(sb);
    sb.append(" protocolPredefined:").append(protocolPredefined);
    if (protocolCustom != null) sb.append(" protocolCustom:").append(protocolCustom);
    if (address != null) sb.append(" address:").append(address);