Java tutorial
//package com.java2s; import org.w3c.dom.bootstrap.DOMImplementationRegistry; public class Main { private static DOMImplementationRegistry domImpRegistry = null; /** * @return DOM Implementation Registry * @throws Exception */ private static DOMImplementationRegistry getDOMImplementationRegistry() throws Exception { if (domImpRegistry == null) domImpRegistry = DOMImplementationRegistry.newInstance(); return domImpRegistry; } }