Package com.hp.hpl.deli

Examples of com.hp.hpl.deli.ProfileAttribute


            rootElement = document.createElementNS(null, "browser");
            document.appendChild(rootElement);

            Iterator profileIter = theProfile.iterator();
            while (profileIter.hasNext()) {
                ProfileAttribute p = (ProfileAttribute)profileIter.next();
                attributeNode = document.createElementNS(null, p.getAttribute());
                rootElement.appendChild(attributeNode);
                Vector attributeValue = p.get();
    if (attributeValue != null)
    {
      Iterator complexValueIter = attributeValue.iterator();
      if (p.getCollectionType().equals("Simple")) {
        // Simple attribute
        String value = (String)complexValueIter.next();
        text = document.createTextNode(value);
        attributeNode.appendChild(text);
      } else {
View Full Code Here

TOP

Related Classes of com.hp.hpl.deli.ProfileAttribute

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.