Package com.google.walkaround.wave.shared.ContactsService

Examples of com.google.walkaround.wave.shared.ContactsService.Contact


  /**
   * Adds contacts to the contact store, and updates any existing profiles.
   */
  private void updateWith(ContactList someContacts) {
    for (int i = 0; i < someContacts.size(); i++) {
      Contact contact = someContacts.get(i);
      String id = contact.getAddress();
      if (id == null) {
        // Empty contact; discard it.
        continue;
      }
      contacts.put(id, contact);
View Full Code Here

TOP

Related Classes of com.google.walkaround.wave.shared.ContactsService.Contact

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.