Here you can find the source of createEmptyDocument(final DocumentBuilder builder)
private static Document createEmptyDocument(final DocumentBuilder builder)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Document; import javax.xml.parsers.DocumentBuilder; public class Main { private static Document createEmptyDocument(final DocumentBuilder builder) { return builder.newDocument(); }//w w w .jav a 2 s . c o m }