Java tutorial
//package com.java2s; import org.w3c.dom.*; public class Main { /** * Method to convert a Element XML to a Node XML. * @param elem element XML to input. * @return node XML. */ public static Node convertElementToNode(Element elem) { return elem.getFirstChild(); } }