FileDocCategorySizeDatePackage
DocumentEditAS.javaAPI DocApache Xerces 3.0.12250Fri Sep 14 20:33:52 BST 2007org.apache.xerces.dom3.as

DocumentEditAS

public interface DocumentEditAS implements NodeEditAS
deprecated
This interface extends the NodeEditAS interface with additional methods for both document and AS editing.

See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.

Fields Summary
Constructors Summary
Methods Summary
public booleangetContinuousValidityChecking()
An attribute specifying whether continuous checking for the validity of the document is enforced or not. Setting this to true will result in an exception being thrown, i.e., VALIDATION_ERR, for documents that are invalid at the time of the call. If the document is invalid, then this attribute will remain false. This attribute is false by default.Add VALIDATION_ERR code to the list of constants in DOMASException.

public voidsetContinuousValidityChecking(boolean continuousValidityChecking)
An attribute specifying whether continuous checking for the validity of the document is enforced or not. Setting this to true will result in an exception being thrown, i.e., VALIDATION_ERR, for documents that are invalid at the time of the call. If the document is invalid, then this attribute will remain false. This attribute is false by default.Add VALIDATION_ERR code to the list of constants in DOMASException.