This tree model for XML captures the idea of deferring the construction of child nodes until they are needed. The isComplete
function identifies whether or not a particular node has been fully parsed. A node may not be fully parsed, for example, if all of the children of an element have not yet been parsed.
In comparison to DOM, in this model, you will not find document fragments, or entities. In addition, while {@link OMDocument} and {@link OMAttribute} exist, neither is an extensionof OMNode
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|