xerces c - What is the difference between DOCUMENT_NODE, DOCUMENT_TYPE_NODE and DOCUMENT_FRAGMENT_NODE? -
xerces c - What is the difference between DOCUMENT_NODE, DOCUMENT_TYPE_NODE and DOCUMENT_FRAGMENT_NODE? -
can 1 explain me difference between document_node, document_type_node , document_fragment_node in xerces-c.
a document_fragment_node can used top level parent of partial document. illustration implement cut-copy-paste operation. described in detail here: http://www.w3.org/tr/rec-dom-level-1/level-one-core.html#id-b63ed1a3
a document_type_node starting node of dtd declaration starting <!doctype
. described in detail here: http://www.w3.org/tr/rec-dom-level-1/level-one-core.html#id-412266927
the document_node root node of node tree generated xml input. please note not root element of xml instance. parse() method returns pointer document_node can access finish xml. detailed description can found here: http://xerces.apache.org/xerces-c/apidocs-3/classdomdocument.html
xerces-c
Comments
Post a Comment