Examples of BuddyExtend


Examples of net.solosky.maplefetion.bean.BuddyExtend

          System.out.println("所在分组:"+buddy.getCordId());
          System.out.println("状态:"+fomartPresence(buddy));
          System.out.println("备注:"+buddy.getLocalName());
          System.out.println("手机号码:"+buddy.getMobile());
         
          BuddyExtend extend = buddy.getExtend();
          if(extend!=null) {
              System.out.println("个性签名:"+buddy.getImpresa());
              System.out.println("所在地:"+extend.getCarrierRegion());
              System.out.println("性别:"+extend.getGender());
              System.out.println("血型:"+extend.getBlood());
              System.out.println("星座:"+extend.getHoroscope());
              System.out.println("生肖:"+extend.getLunarAnimal());
              System.out.println("职业:"+extend.getOccupation());
              System.out.println("爱好:"+extend.getHobby());
              System.out.println("生日:"+extend.getBirth());
              System.out.println("个人邮件:"+buddy.getEmail());
          }
          System.out.println("----------------------------------");
      }
View Full Code Here

Examples of net.solosky.maplefetion.bean.BuddyExtend

    Element root = XMLHelper.build(response.getBody().toSendString());
    Element contact = XMLHelper.find(root, "/results/contact");
   
    BeanHelper.toBean(Buddy.class, buddy, contact);
   
    BuddyExtend extend = buddy.getExtend();
    if(extend==null) {
      extend = new BuddyExtend();
      buddy.setExtend(extend);
    }
    BeanHelper.toBean(BuddyExtend.class, extend, contact);
    context.getFetionStore().flushBuddy(buddy);
   
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.