Factory interface to create new
DOMBuilder
and DOMWriter
implementations.
Java Binding:
package org.w3c.dom.ls;
public interface DOMImplementationLS {
public static final short MODE_SYNCHRONOUS = 1;
public static final short MODE_ASYNCHRONOUS = 2;
public DOMBuilder createDOMBuilder(short mode) throws DOMException;
public DOMWriter createDOMWriter();
public DOMInputSource createDOMInputSource();
}