Package org.w3c.dom

Examples of org.w3c.dom.Element.cloneNode()


                             break;
                          }
                       }
                      
                       if (el != null) {
                          attrs.add(new Attribute(name, el.cloneNode(true)));
                       }
                       else {
                          attrs.add(new Attribute(name, null));
                       }
                   }
View Full Code Here


            usedNewRunTime = true;
            monthElement.setAttribute("month", month);
            Iterator iter = childElements.iterator();
            while (iter.hasNext()){
              Element child = (Element) iter.next();
              monthElement.appendChild(child.cloneNode(true));
            }
            newChildElements.add(monthElement);
          }
          childElements = newChildElements;
        }
View Full Code Here

          usedNewRunTime = true;
          monthElement.setAttribute("month", month);
          Iterator iter = childElements.iterator();
          while (iter.hasNext()){
            Element child = (Element) iter.next();
            monthElement.appendChild(child.cloneNode(true));
          }
          newChildElements.add(monthElement);
        }
        childElements = newChildElements;
      }
View Full Code Here

    Element dayElement = parentDaysElement.getOwnerDocument().createElement("day");
    dayElement.setAttribute("day", day);
    Iterator iter = childElements.iterator();
    while (iter.hasNext()){
      Element child = (Element) iter.next();
      dayElement.appendChild(child.cloneNode(true));
    }         
    parentDaysElement.appendChild(dayElement);
  }
 
View Full Code Here

        Date createdDate = new Date();
        long currentTime = createdDate.getTime() + 300000;
        createdDate.setTime(currentTime);
        elementCreated.appendChild(doc.createTextNode(zulu.format(createdDate)));
        timestampElement.appendChild(elementCreated);
        timestampElement.appendChild(elementCreated.cloneNode(true));

        secHeader.getSecurityHeader().appendChild(timestampElement);
       
        if (LOG.isDebugEnabled()) {
            String outputString =
View Full Code Here

        Date createdDate = new Date();
        long currentTime = createdDate.getTime() + 300000;
        createdDate.setTime(currentTime);
        elementCreated.appendChild(doc.createTextNode(zulu.format(createdDate)));
        timestampElement.appendChild(elementCreated);
        timestampElement.appendChild(elementCreated.cloneNode(true));

        secHeader.getSecurityHeader().appendChild(timestampElement);
       
        if (LOG.isDebugEnabled()) {
            String outputString =
View Full Code Here

                // copy status
                Element configElement = this.getCopletConfiguration(copletID,
                                                      (Map)theProfile.get(PortalConstants.PROFILE_DEFAULT_COPLETS),
                                                      (Map)theProfile.get(PortalConstants.PROFILE_MEDIA_COPLETS));
                Element configStatus = (Element)DOMUtil.getFirstNodeFromPath(configElement, new String[] {"status"}, false);
                copletNode.appendChild(configStatus.cloneNode(true));

                // clear type information for each status
                Element status = (Element)copletNode.getElementsByTagName("status").item(0);
                NodeList parameters = status.getChildNodes();
                Node    current;
View Full Code Here

        soapOperation = requiresSOAP12 ? SOAP12_OPERATION : SOAP_OPERATION;
    }

    public Definition cloneDefinition(WSDLFactory factory, Definition definition) throws WSDLException {
        Element root = definition.getDocumentationElement();
        root = (Element)root.cloneNode(true);
        WSDLReader reader = factory.newWSDLReader();
        return reader.readWSDL(definition.getDocumentBaseURI(), root);
    }
   
    public Types createTypes(Definition definition) {
View Full Code Here

    private static final String SERVICE_SUFFIX = "__Service";
    private static final String PORT_SUFFIX = "__SOAPHTTPPort";

    public Definition cloneDefinition(WSDLFactory factory, Definition definition) throws WSDLException {
        Element root = definition.getDocumentationElement();
        root = (Element)root.cloneNode(true);
        WSDLReader reader = factory.newWSDLReader();
        return reader.readWSDL(definition.getDocumentBaseURI(), root);
    }

    public Binding createBinding(Definition definition, PortType portType) {
View Full Code Here

                // copy status
                Element configElement = this.getSunletConfiguration(sunletID,
                                                      (Map)theProfile.get(Constants.PROFILE_DEFAULT_SUNLETS),
                                                      (Map)theProfile.get(Constants.PROFILE_MEDIA_SUNLETS));
                Element configStatus = (Element)XMLUtil.getFirstNodeFromPath(configElement, new String[] {"status"}, false);
                sunletNode.appendChild(configStatus.cloneNode(true));

                // clear type information for each status
                Element status = (Element)sunletNode.getElementsByTagName("status").item(0);
                NodeList parameters = status.getChildNodes();
                Node    current;
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.