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.
|