Extends the DOM2
DOMImplementation
interface with factory methods to create
schema documents
Java binding:
package org.w3c.dom.as;
import org.w3c.dom.DOMImplementation;
public interface DOMImplementationAS extends DOMImplementation {
public boolean getContainer();
public String getSchemaType();
public void setSchemaType(String schemaType);
public ASModel createAS(boolean NamespaceAware, String schemaType);
}
IDL:
interface DOMImplementationAS : DOMImplementation {
readonly attribute boolean container;
attribute DOMString schemaType;
ASModel createAS(in boolean NamespaceAware, in DOMString schemaType);
};