Examples of XmlRpcScalar


Examples of org.springmodules.remoting.xmlrpc.support.XmlRpcScalar

   * @return the created XML element.
   */
  protected final Element createScalarElement(String elementName,
      XmlRpcElement value, Document document) {
    Element scalarElement = document.createElement(elementName);
    XmlRpcScalar scalarValue = (XmlRpcScalar) value;
    Text text = document.createTextNode(scalarValue.getValueAsString());
    scalarElement.appendChild(text);

    return scalarElement;
  }
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.