Package org.onesocialweb.xml.dom.imp

Examples of org.onesocialweb.xml.dom.imp.DefaultRelationDomWriter.toElement()


      RelationDomWriter writer = new DefaultRelationDomWriter();
      DOMDocument domDocument = new DOMDocument();
      IQ result = IQ.createResultIQ(packet);
      Element query = (Element) domDocument.appendChild(domDocument.createElementNS(NAMESPACE, NAME));
      for (Relation relation : relations) {
        writer.toElement(relation,query);
      }
      result.setChildElement((org.dom4j.Element) query);
      // Return and send the result packet
      return result;
     
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.