A factory that enables applications to obtain instances of
DOMImplementation .
Example:
// get an instance of the DOMImplementation registry
DOMImplementationRegistry registry =
DOMImplementationRegistry.newInstance();
// get a DOM implementation the Level 3 XML module
DOMImplementation domImpl =
registry.getDOMImplementation("XML 3.0");
This provides an application with an implementation-independent starting
point. |