HomeSort by relevance Sort by last modified time
    Searched refs:VCard (Results 1 - 2 of 2) sorted by null

  /external/smack/src/org/jivesoftware/smackx/provider/
VCardProvider.java 26 import org.jivesoftware.smackx.packet.VCard;
39 * vCard provider.
68 if (event == XmlPullParser.END_TAG && "vCard".equals(parser.getName())) break;
85 * Builds a users vCard from xml file.
87 * @param xml the xml representing a users vCard.
88 * @return the VCard.
91 public static VCard createVCardFromXML(String xml) throws Exception {
92 VCard vCard = new VCard();
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
VCard.java 48 * A VCard class for use with the
55 * information in vCards. Also remember that VCard transfer is not a standard, and the protocol
61 * // To save VCard:
63 * VCard vCard = new VCard();
64 * vCard.setFirstName("kir");
65 * vCard.setLastName("max");
66 * vCard.setEmailHome("foo@fee.bar");
67 * vCard.setJabberId("jabber@id.org")
    [all...]

Completed in 56 milliseconds