Fields Summary |
---|
public static final short | WF_CHECKCheck for well-formedness of this node. |
public static final short | NS_WF_CHECKCheck for namespace well-formedness includes WF_CHECK . |
public static final short | PARTIAL_VALIDITY_CHECKChecks for whether this node is partially valid. It includes
NS_WF_CHECK . |
public static final short | STRICT_VALIDITY_CHECKChecks for strict validity of the node with respect to active AS which
by definition includes NS_WF_CHECK . |
Methods Summary |
---|
public boolean | canAppendChild(org.w3c.dom.Node newChild)Has the same arguments as AppendChild .
|
public boolean | canInsertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild)Determines whether the insertBefore operation from the
Node interface would make this document invalid with
respect to the currently active AS. Describe "valid" when referring
to partially completed documents.
|
public boolean | canRemoveChild(org.w3c.dom.Node oldChild)Has the same arguments as RemoveChild .
|
public boolean | canReplaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild)Has the same arguments as ReplaceChild .
|
public boolean | isNodeValid(boolean deep, short wFValidityCheckLevel)Determines if the Node is valid relative to currently active AS. It
doesn't normalize before checking if the document is valid. To do so,
one would need to explicitly call a normalize method.
|