=head1 NAMEXML::DOM::EntityReference - An XML ENTITY reference in XML::DOM=head1 DESCRIPTIONXML::DOM::EntityReference extends L<XML::DOM::Node>.EntityReference objects may be inserted into the structure model whenan entity reference is in the source document, or when the user wishesto insert an entity reference. Note that character references andreferences to predefined entities are considered to be expanded by theHTML or XML processor so that characters are represented by theirUnicode equivalent rather than by an entity reference. Moreover, theXML processor may completely expand references to entities whilebuilding the structure model, instead of providing EntityReferenceobjects. If it does provide such objects, then for a givenEntityReference node, it may be that there is no Entity noderepresenting the referenced entity; but if such an Entity exists, thenthe child list of the EntityReference node is the same as that of theEntity node. As with the Entity node, all descendants of theEntityReference are readonly.The resolution of the children of the EntityReference (the replacementvalue of the referenced Entity) may be lazily evaluated; actions by theuser (such as calling the childNodes method on the EntityReferencenode) are assumed to trigger the evaluation.