Package org.mypj.tele.client

Examples of org.mypj.tele.client.PersonInfo


    if (ps == null)
      return null;
    PersonInfo[] info = new PersonInfo[ps.size()];
    for (int i = 0; i < ps.size(); i++) {
      Person p = ps.get(i);
      info[i] = new PersonInfo();
      info[i].setName(p.getName());
      if (p.getContacts() != null && p.getContacts().size() > 0)
        info[i].setContact(p.getContacts().get(i).getContent());
    }
    return info;
View Full Code Here

TOP

Related Classes of org.mypj.tele.client.PersonInfo

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.