Package net.sphene.goim.rcp.xmpp

Examples of net.sphene.goim.rcp.xmpp.BrowseIQ


          taskObserver.finishedTask(task);
        }});
      }
      public void sendBrowseIQ() {
        try {
          final BrowseIQ browseIQ = BrowseIQProvider.retrieveBrowseRequest(account.xmpp.getConnection(),addressid);
          item.getDisplay().asyncExec(new Runnable() { public void run(){
            for(String ns : browseIQ.getNamespaces()) {
              if(ns.equals("jabber:iq:register"))
                item.setData("supportsRegister",true);
            }
            item.setBackground(null);
          }});
View Full Code Here

TOP

Related Classes of net.sphene.goim.rcp.xmpp.BrowseIQ

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.