Extends the DOM2
DOMImplementation
interface with factory methods to create
schema documents
IDL:
interface DOMImplementationAS : DOMImplementation {
ASModel createAS();
ASExternalModel createExternalAS();
};
Java binding:
package org.w3c.dom.abstractSchemas;
public interface DOMImplementationAS extends DOMImplementation {
public ASModel createAS();
public ASExternalModel createExternalAS();
}