Package nu.fw.jeti.plugins.vcard

Examples of nu.fw.jeti.plugins.vcard.VCard


        avatars.put(hash, icon);
        jidStatus.setAvatar(icon);
      }
      else
      {
        backend.send(new InfoQuery(jidStatus.getJID(),"get", new VCard()),new IQResultListener()
        {
          public void iqResult(InfoQuery iq)
          {
            IQExtension iqe = iq.getIQExtension();
            if(iqe instanceof VCard)
View Full Code Here


  }
 
  public void getVCard(Connect connect)
  {
    this.connect = connect;
    backend.send(new InfoQuery("get", new VCard()),new IQResultListener()
    {
      public void iqResult(InfoQuery iq)
      {
        IQExtension iqe = iq.getIQExtension();
        if(iqe instanceof VCard)
View Full Code Here

TOP

Related Classes of nu.fw.jeti.plugins.vcard.VCard

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.