Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
    }
}