Extends the
Document
interface with additional methods for both
document and abstract schema
editing.
Java binding:
package org.w3c.dom.abstractSchemas;
public interface DocumentAS extends Document {
public boolean getContinuousValidityChecking();
public void setContinuousValidityChecking(boolean continuousValidityChecking);
public int numASs();
public ASModel getInternalAS();
public ASNodeList getASs();
public ASModel getActiveAS();
public void addAS(ASModel cm);
public void removeAS(ASModel cm);
public boolean activateAS(ASModel cm);
}
IDL:
interface DocumentAS : Document {
attribute boolean continuousValidityChecking;
int numASs();
ASModel getInternalAS();
ASNodeList getASs();
ASModel getActiveAS();
void addAS(in ASModel cm);
void removeAS(in ASModel cm);
boolean activateAS(in ASModel cm);
};