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();
}
IDL:
interface DOMImplementationLS {
const unsigned short MODE_SYNCHRONOUS = 1;
const unsigned short MODE_ASYNCHRONOUS = 2;
DOMBuilder createDOMBuilder(in unsigned short mode)
raises(DOMException);
DOMWriter createDOMWriter();
DOMInputSource createDOMInputSource();
};