Here you can find the source of createElement(final Document parentDocument, final String name)
private static Element createElement(final Document parentDocument, final String name)
//package com.java2s; //License from project: LGPL import org.w3c.dom.Document; import org.w3c.dom.Element; public class Main { private static Element createElement(final Document parentDocument, final String name) { return parentDocument.createElement(name); }/*from ww w. j a va2 s . c o m*/ }