KHTML
#include <dom_xml.h>

Protected Member Functions | |
| EntityReference (EntityReferenceImpl *i) | |
Additional Inherited Members | |
Public Types inherited from DOM::Node | |
| enum | DocumentPosition { DOCUMENT_POSITION_DISCONNECTED = 0x01, DOCUMENT_POSITION_PRECEDING = 0x02, DOCUMENT_POSITION_FOLLOWING = 0x04, DOCUMENT_POSITION_CONTAINS = 0x08, DOCUMENT_POSITION_CONTAINED_BY = 0x10, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20 } |
| enum | NodeType { ELEMENT_NODE = 1, ATTRIBUTE_NODE = 2, TEXT_NODE = 3, CDATA_SECTION_NODE = 4, ENTITY_REFERENCE_NODE = 5, ENTITY_NODE = 6, PROCESSING_INSTRUCTION_NODE = 7, COMMENT_NODE = 8, DOCUMENT_NODE = 9, DOCUMENT_TYPE_NODE = 10, DOCUMENT_FRAGMENT_NODE = 11, NOTATION_NODE = 12, XPATH_NAMESPACE_NODE = 13 } |
Protected Attributes inherited from DOM::Node | |
| NodeImpl * | impl |
Detailed Description
EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference.
Note that character references and references to predefined entities are considered to be expanded by the HTML or XML processor so that characters are represented by their Unicode equivalent rather than by an entity reference. Moreover, the XML processor may completely expand references to entities while building the structure model, instead of providing EntityReference objects. If it does provide such objects, then for a given EntityReference node, it may be that there is no Entity node representing the referenced entity; but if such an Entity exists, then the child list of the EntityReference node is the same as that of the Entity node. As with the Entity node, all descendants of the EntityReference are readonly.
The resolution of the children of the EntityReference (the replacement value of the referenced Entity ) may be lazily evaluated; actions by the user (such as calling the childNodes method on the EntityReference node) are assumed to trigger the evaluation.
Constructor & Destructor Documentation
| EntityReference::EntityReference | ( | ) |
Definition at line 130 of file dom_xml.cpp.
| EntityReference::EntityReference | ( | const EntityReference & | other | ) |
Definition at line 134 of file dom_xml.cpp.
|
inline |
| EntityReference::~EntityReference | ( | ) |
Definition at line 158 of file dom_xml.cpp.
|
protected |
Definition at line 162 of file dom_xml.cpp.
Member Function Documentation
| EntityReference & EntityReference::operator= | ( | const Node & | other | ) |
Definition at line 138 of file dom_xml.cpp.
| EntityReference & EntityReference::operator= | ( | const EntityReference & | other | ) |
Definition at line 152 of file dom_xml.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:51:23 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.
KDE API Reference
Public Member Functions inherited from