Dom Nodetree
# XML DOM Node Tree
* * *
XML DOM treats an XML document as a tree of nodes.
All nodes in the tree are related to each other.
* * *
## XML DOM Node Tree
XML DOM views an XML document as a tree-like structure. This tree structure is called the **node tree**.
You can access all nodes through this tree. You can modify or delete their content, or create new elements.
This node tree shows the collection of nodes and their relationships. The tree starts from the root node.
YouTip