#include <DomDocumentFragment.h>
Inherits xmldom::DomNode.
Inheritance diagram for xmldom::DomDocumentFragment:
DomDocument
object.
It is very common to want to be able to extract a portion of a document's tree or to create a new fragment of a document. Imagine implementing a user command like cut or rearranging a document by moving fragments around. It is desirable to have an object which can hold such fragments and it is quite natural to use a DOMNode for this purpose. While it is true that a DomDocument
object could fulfill this role, a DomDocument
object can potentially be a heavyweight object, depending on the underlying implementation. What is really needed for this is a very lightweight object. DomDocumentFragment
is such an object.
Furthermore, various operations -- such as inserting nodes as children of another DomNode
-- may take DomDocumentFragment
objects as arguments; this results in all the child nodes of the DomDocumentFragment
being moved to the child list of this node.
The children of a DomDocumentFragment
node are zero or more nodes representing the tops of any sub-trees defining the structure of the document. DomDocumentFragment
nodes do not need to be well-formed XML documents (although they do need to follow the rules imposed upon well-formed XML parsed entities, which can have multiple top nodes). For example, a DomDocumentFragment
might have only one child and that child node could be a DOMText
node. Such a structure model represents neither an HTML document nor a well-formed XML document.
When a DomDocumentFragment
is inserted into a DomDocument
(or indeed any other DomNode
that may take children) the children of the DomDocumentFragment
and not the DomDocumentFragment
itself are inserted into the DomNode
. This makes the DomDocumentFragment
very useful when the user wishes to create nodes that are siblings; the DomDocumentFragment
acts as the parent of these nodes so that the user can use the standard methods from the DomNode
interface, such as insertBefore()
and appendChild()
.
Public Member Functions | |
DomDocumentFragment () | |
ctor | |
DomDocumentFragment (const DomDocumentFragment ©) | |
copy ctor | |
virtual | ~DomDocumentFragment () |
dtor | |
const DomDocumentFragment & | operator= (const DomDocumentFragment &assign) |
assign |
xmldom::DomDocumentFragment::DomDocumentFragment | ( | ) |
ctor
xmldom::DomDocumentFragment::DomDocumentFragment | ( | const DomDocumentFragment & | copy | ) |
copy ctor
xmldom::DomDocumentFragment::~DomDocumentFragment | ( | ) | [virtual] |
dtor
const DomDocumentFragment & xmldom::DomDocumentFragment::operator= | ( | const DomDocumentFragment & | assign | ) |
assign