Inheritance diagram for DzDomNode:

This is an abstract base class that provides general functionality for DAZ Script DOM components.
| enum DzDomNode::NodeType |
Enumerated DOM node types
| ElementNode |
A DOM Element
|
| AttributeNode |
A DOM Attribute
|
| TextNode |
Plain Text in the DOM
|
| CDATASectionNode |
Character DATA node in the DOM
|
| EntityReferenceNode |
A Reference to a DOM Entity
|
| EntityNode |
A DOM Entity
|
| ProcessingInstructionNode |
A DOM Processing Instruction
|
| CommentNode |
A DOM Comment
|
| DocumentNode |
A DOM Document
|
| DocumentTypeNode |
A DOM Document Type
|
| DocumentFragmentNode |
A DOM Document Fragment
|
| NotationNode |
A DOM Notation
|
| BaseNode |
A basic node
|
| CharacterDataNode |
A Character Data node
|
| void DzDomNode::appendChild | ( | DzDomNode | child | ) |
Appends child to the end of this node's child list
| void DzDomNode::clear | ( | ) |
Converts the node into an invalid (Null) node. Its type and contents are cleared.
| DzDomNode DzDomNode::firstChild | ( | ) |
| Boolean DzDomNode::hasAttributes | ( | ) |
| Boolean DzDomNode::hasChildNodes | ( | ) |
Inserts newChild into this node's child list following refChild
Inserts newChild into this node's child list in front of refChild
| Boolean DzDomNode::isCDATASection | ( | ) |
| Boolean DzDomNode::isCharacterData | ( | ) |
| Boolean DzDomNode::isComment | ( | ) |
| Boolean DzDomNode::isDocument | ( | ) |
| Boolean DzDomNode::isDocumentFragment | ( | ) |
| Boolean DzDomNode::isDocumentType | ( | ) |
| Boolean DzDomNode::isElement | ( | ) |
| Boolean DzDomNode::isEntity | ( | ) |
| Boolean DzDomNode::isEntityReference | ( | ) |
| Boolean DzDomNode::isNotation | ( | ) |
| Boolean DzDomNode::isNull | ( | ) |
| Boolean DzDomNode::isProcessingInstruction | ( | ) |
| DzDomNode DzDomNode::lastChild | ( | ) |
| DzDomNode DzDomNode::nextSibling | ( | ) |
| void DzDomNode::normalize | ( | ) |
Converts all the node's children into standard form (e.g. adjacent text nodes will be merged )
| DzDomNode DzDomNode::ownerDocument | ( | ) |
| DzDomNode DzDomNode::parentNode | ( | ) |
| DzDomNode DzDomNode::previousSibling | ( | ) |
| void DzDomNode::removeChild | ( | DzDomNode | oldChild | ) |
Removes oldChild from this node's child list
Inserts newChild into this node's child list in place of refChild
| QString DzDomNode::localName |
(Read Only) The local name of the node
| QString DzDomNode::namespaceURI |
(Read Only) The namespace of the node
| QString DzDomNode::nodeName |
(Read Only) The name of the node
(Read Only) The type of the node
| QString DzDomNode::nodeValue |
The node value
| QString DzDomNode::prefix |
The node prefix