XQuilla/docs/dom3-api/classxercesc_1_1DOMDocumentFragment.html

105 lines
9 KiB
HTML
Raw Normal View History

2020-02-17 21:05:20 +00:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
2020-02-17 21:11:31 +00:00
<title>XQilla DOM3 API Documentation</title>
2020-02-17 21:05:20 +00:00
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
2020-02-17 21:11:31 +00:00
<a style="float:right;" href="http://sourceforge.net/projects/xqilla"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=152021&amp;type=2" border="0" alt="SourceForge.net Logo" /></a>
2020-02-17 21:19:08 +00:00
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="namespaces.html">Namespace List</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="namespacemembers.html">Namespace&nbsp;Members</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a> | <a class="qindex" href="examples.html">Examples</a></div>
<h1>xercesc::DOMDocumentFragment Class Reference</h1><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object.
2020-02-17 21:05:20 +00:00
<a href="#_details">More...</a>
<p>
<code>#include &lt;<a class="el" href="DOMDocumentFragment_8hpp-source.html">DOMDocumentFragment.hpp</a>&gt;</code>
<p>
2020-02-17 21:19:08 +00:00
Inheritance diagram for xercesc::DOMDocumentFragment:<p><center><img src="classxercesc_1_1DOMDocumentFragment__inherit__graph.png" border="0" usemap="#xercesc_1_1DOMDocumentFragment__inherit__map" alt="Inheritance graph"></center>
2020-02-17 21:05:20 +00:00
<map name="xercesc_1_1DOMDocumentFragment__inherit__map">
2020-02-17 21:19:08 +00:00
<area href="classxercesc_1_1DOMNode.html" shape="rect" coords="48,7,184,31" alt="">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="classxercesc_1_1DOMDocumentFragment-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
2020-02-17 21:05:20 +00:00
<tr><td></td></tr>
2020-02-17 21:17:06 +00:00
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Destructor</div></td></tr>
2020-02-17 21:19:08 +00:00
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html#z105_0">~DOMDocumentFragment</a> ()</td></tr>
2020-02-17 21:17:06 +00:00
2020-02-17 21:19:08 +00:00
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Destructor. <a href="#z105_0"></a><br></td></tr>
2020-02-17 21:17:06 +00:00
<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Hidden constructors</div></td></tr>
2020-02-17 21:19:08 +00:00
<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html#z101_0">DOMDocumentFragment</a> ()</td></tr>
2020-02-17 21:17:06 +00:00
2020-02-17 21:05:20 +00:00
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
2020-02-17 21:19:08 +00:00
<a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object.
<p>
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 <a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a> for this purpose. While it is true that a <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> object could fulfil this role, a <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> object can potentially be a heavyweight object, depending on the underlying implementation. What is really needed for this is a very lightweight object. <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> is such an object. <p>
Furthermore, various operations -- such as inserting nodes as children of another <code><a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a></code> -- may take <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> objects as arguments; this results in all the child nodes of the <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> being moved to the child list of this node. <p>
The children of a <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> node are zero or more nodes representing the tops of any sub-trees defining the structure of the document. <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> 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 <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> might have only one child and that child node could be a <code><a class="el" href="classxercesc_1_1DOMText.html">DOMText</a></code> node. Such a structure model represents neither an HTML document nor a well-formed XML document. <p>
When a <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> is inserted into a <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> (or indeed any other <code><a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a></code> that may take children) the children of the <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> and not the <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> itself are inserted into the <code><a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a></code>. This makes the <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> very useful when the user wishes to create nodes that are siblings; the <code><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a></code> acts as the parent of these nodes so that the user can use the standard methods from the <code><a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a></code> interface, such as <code><a class="el" href="classxercesc_1_1DOMNode.html#z340_12">insertBefore()</a></code> and <code><a class="el" href="classxercesc_1_1DOMNode.html#z340_15">appendChild()</a></code>.<p>
<dl compact><dt><b>Since:</b></dt><dd>DOM Level 1 </dd></dl>
2020-02-17 21:05:20 +00:00
<p>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
2020-02-17 21:19:08 +00:00
<a class="anchor" name="z101_0" doxytag="xercesc::DOMDocumentFragment::DOMDocumentFragment"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
2020-02-17 21:05:20 +00:00
<tr>
2020-02-17 21:19:08 +00:00
<td class="md" nowrap valign="top">xercesc::DOMDocumentFragment::DOMDocumentFragment </td>
<td class="md" valign="top">(&nbsp;</td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top">&nbsp;)&nbsp;</td>
<td class="md" nowrap><code> [inline, protected]</code></td>
2020-02-17 21:05:20 +00:00
</tr>
</table>
2020-02-17 21:19:08 +00:00
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
2020-02-17 21:05:20 +00:00
<p>
2020-02-17 21:19:08 +00:00
</td>
</tr>
</table>
<a class="anchor" name="z105_0" doxytag="xercesc::DOMDocumentFragment::~DOMDocumentFragment"></a><p>
<table class="mdTable" width="100%" cellpadding="2" cellspacing="0">
<tr>
<td class="mdRow">
<table cellpadding="0" cellspacing="0" border="0">
2020-02-17 21:05:20 +00:00
<tr>
2020-02-17 21:19:08 +00:00
<td class="md" nowrap valign="top">virtual xercesc::DOMDocumentFragment::~<a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> </td>
<td class="md" valign="top">(&nbsp;</td>
<td class="mdname1" valign="top" nowrap> </td>
<td class="md" valign="top">&nbsp;)&nbsp;</td>
<td class="md" nowrap><code> [inline, virtual]</code></td>
2020-02-17 21:05:20 +00:00
</tr>
</table>
2020-02-17 21:19:08 +00:00
</td>
</tr>
</table>
<table cellspacing="5" cellpadding="0" border="0">
<tr>
<td>
&nbsp;
</td>
<td>
2020-02-17 21:05:20 +00:00
<p>
Destructor.
<p>
2020-02-17 21:19:08 +00:00
</td>
</tr>
</table>
2020-02-17 21:05:20 +00:00
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="DOMDocumentFragment_8hpp-source.html">DOMDocumentFragment.hpp</a></ul>
2020-02-17 21:19:08 +00:00
<hr size="1"><address style="align: right;"><small>Generated on Fri Sep 25 06:55:54 2009 for XQilla DOM Level 3 API by&nbsp;
2020-02-17 21:05:20 +00:00
<a href="http://www.doxygen.org/index.html">
2020-02-17 21:19:08 +00:00
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.3.9.1 </small></address>
2020-02-17 21:05:20 +00:00
</body>
</html>