Packagedom.validation
Classpublic class ValidationType
InheritanceValidationType Inheritance Object

Validation type constants stored in NodeEditVAL.

Note: Moved to ValidationType specifically for this documentation. Constants are not allowed in an interface.

See also

dom.validation.NodeEditVAL


Public Constants
 ConstantDefined By
  DOM 3 Validation VAL_INCOMPLETE : Number = 3
[static] Check if the node's immediate children are those expected by the content model.
ValidationType
  DOM 3 Validation VAL_NS_WF : Number = 2
[static] Check if the node is namespace well-formed.
ValidationType
  DOM 3 Validation VAL_SCHEMA : Number = 4
[static] Check if the node's entire subtree are those expected by the content model.
ValidationType
  DOM 3 Validation VAL_WF : Number = 1
[static] Check if the node is well-formed.
ValidationType
Constant Detail
DOM 3 Validation VAL_INCOMPLETEConstant
public static const VAL_INCOMPLETE:Number = 3

Introduced in: DOM 3 Validation 

Check if the node's immediate children are those expected by the content model. This node's trailing required children could be missing. It includes VAL_NS_WF.

See also

DOM 3 Validation VAL_NS_WFConstant 
public static const VAL_NS_WF:Number = 2

Introduced in: DOM 3 Validation 

Check if the node is namespace well-formed.

See also

DOM 3 Validation VAL_SCHEMAConstant 
public static const VAL_SCHEMA:Number = 4

Introduced in: DOM 3 Validation 

Check if the node's entire subtree are those expected by the content model. It includes VAL_NS_WF.

See also

DOM 3 Validation VAL_WFConstant 
public static const VAL_WF:Number = 1

Introduced in: DOM 3 Validation 

Check if the node is well-formed.

See also