Java tutorial
//package com.java2s; /******************************************************************************* * Copyright (c) 2003, 2010 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - Initial API and implementation * Angelo Zerr <angelo.zerr@gmail.com> - Jetty packages *******************************************************************************/ import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { /** * Create a child of the given node at the given index. * * @param doc * a document * @param element * an element * @param index * an index * @param nodeName * a node name * @return org.w3c.dom.Element */ public static Element createChildElement(Document doc, Element element, int index, String nodeName) { Element element2 = doc.createElement(nodeName); try { NodeList childList = element.getElementsByTagName(nodeName); Node child = childList.item(index); element.insertBefore(element2, child); } catch (Exception e) { element.appendChild(element2); } return element2; } /** * Create a child of the given node. * * @param doc * a document * @param node * a node * @param nodeName * a node name * @return org.w3c.dom.Element */ public static Element createChildElement(Document doc, Node node, String nodeName) { Element element = doc.createElement(nodeName); node.appendChild(element); return element; } }