| 411 |
<h3>The <code>DocumentTypeDefinition</code> Interface</h3> |
<h3>The <code>DocumentTypeDefinition</code> Interface</h3> |
| 412 |
|
|
| 413 |
<pre class=idl><code>interface <dfn id=DocumentTypeDefinition><code>DocumentTypeDefinition</code></dfn> { |
<pre class=idl><code>interface <dfn id=DocumentTypeDefinition><code>DocumentTypeDefinition</code></dfn> { |
| 414 |
|
readonly attribute NamedNodeMap <a href="#elementTypes">elementTypes</a>; |
| 415 |
|
readonly attribute NamedNodeMap <a href="#generalEntities">generalEntities</a>; |
| 416 |
|
readonly attribute NamedNodeMap <a href="#notations">notations</a>; |
| 417 |
|
|
| 418 |
|
<span class=ed>more members come here...</span> |
| 419 |
}</code></pre> |
}</code></pre> |
| 420 |
|
|
| 421 |
<pre class=ed> |
<pre class=ed> |
| 425 |
must implement the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] |
must implement the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] |
| 426 |
interface. See [[DOM XML Document Type Definition]>>3] for |
interface. See [[DOM XML Document Type Definition]>>3] for |
| 427 |
details. |
details. |
| 428 |
|
</pre> |
| 429 |
|
|
| 430 |
|
<dl> |
| 431 |
** Children |
<dt><dfn id=elementTypes class=dom-attr><code>elementTypes</code></dfn> of |
| 432 |
|
type <code>NamedNodeMap</code>, read$B!>(Bonly</dt> |
| 433 |
[2] The [DFN@en[[CODE(DOMa)@en[[[elementTypes]]]] attribute]] |
<dd><p>A live <code>NamedNodeMap</code> object that contains all the element |
| 434 |
of the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] interface |
type definitions belonging to the <code>DocumentType</code> node.</p> |
| 435 |
is a live [CODE(DOMi)@en[[[NamedNodeMap]]]] object that |
|
| 436 |
contains all element types belongs to the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] |
<p>On getting, the attribute <em class=rfc2119>MUST</em> return the |
| 437 |
node. The type of the attribute is [CODE(DOMi)@en[[[NamedNodeMap]]]]. |
<code>NamedNodeMap</code> object that contains all the |
| 438 |
The attribute is read-only. |
<a href="#ElementTypeDefinition"><code>ElementTypeDefinition</code></a> |
| 439 |
|
nodes belonging to the <code>DocumentType</code> node. The |
| 440 |
What are contained in this collection depends on how |
<code>NamedNodeMap</code> object <em class=rfc2119>MUST</em> be read$B!>(Bonly |
| 441 |
the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] node was created. If the |
if and only if the node is read$B!>(Bonly. The <code>NamedNodeMap</code> |
| 442 |
node was created as the result of parsing of an XML document, |
object <em class=rfc2119>MUST</em> be live and the same object |
| 443 |
it [['''MUST''']] contain all element types whose element type and / or |
<em class=rfc2119>MUST</em> be returned for any invocation.</p> |
| 444 |
attribute definition list declaration are encountered by and provided for the DOM |
|
| 445 |
implementation from the XML processor. Note that the XML processor might not |
<p>If the <code>DocumentType</code> node is created during the process |
| 446 |
provide a part of or entire such information depending on the configuration. |
to create a <abbr>DOM</abbr> from an <abbr>XML</abbr> document, the following |
| 447 |
If more than one declarations for an element type or an attribute is available |
requirements are applied: The <code>NamedNodeMap</code> object in the |
| 448 |
at the time of the definition node construction, then declarations other than |
<a href="#elementTypes"><code>elementType</code></a> attribute |
| 449 |
the first ones [['''MUST''']] be discarded. |
<em class=rfc2119>MUST</em> be so transformed that the object contains |
| 450 |
|
the <code>ElementTypeDefinition</code> nodes for the element types |
| 451 |
The attribute [['''MUST''']] return the [CODE(DOMi)@en[[[NamedNodeMap]]]] |
whose name is presented as the <code>Name</code> of the element type or |
| 452 |
object that contains all the [CODE(DOMi)@en[[[ElementTypeDefinition]]]] nodes |
attribute definition list declarations processed by the <abbr>XML</abbr> |
| 453 |
belong to the node. The returned [CODE(DOMi)@en[[[NamedNodeMap]]]] object |
processor. If there is more than one element type declarations for an |
| 454 |
[['''MUST''']] be read-only if and only if the node is read-only. |
element type, then the declarations other than the first one |
| 455 |
Note that the [CODE(DOMi)@en[[[NamedNodeMap]]]] object is live |
<em class=rfc2119>MUST</em> be ignored for the purpose of constructing the |
| 456 |
and therefore any change of read-only flag on the node is immediately |
<code>NamedNodeMap</code> object.</p></dd> |
| 457 |
reflected by that of the object. |
<dt><dfn id=generalEntities class=dom-attr><code>generalEntities</code></dfn> |
| 458 |
|
of type <code>NamedNodeMap</code>, read$B!>(Bonly</dt> |
| 459 |
[3] The [DFN@en[[CODE(DOMa)@en[[[generalEntities]]]] attribute]] |
<dd><p>A live <code>NamedNodeMap</code> object that contains all the general |
| 460 |
of the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] interface |
entities belonging to the <code>DocumentType</code> node.</p> |
| 461 |
is a live [CODE(DOMi)@en[[[NamedNodeMap]]]] object that contains all the |
|
| 462 |
general entities belong to the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] node. |
<p>On getting, the attribute <em class=rfc2119>MUST</em> return the |
| 463 |
The type of the attribute is [CODE(DOMi)@en[[[NamedNodeMap]]]]. |
same value as the <code>entities</code> attribute (defined in the |
| 464 |
The attribute is read-only. |
<code>DocumentType</code> interface) of the same node.</p> |
| 465 |
|
|
| 466 |
|
<div class="note memo"> |
| 467 |
|
<p>This attribute is part of the interface for historical reason.</p> |
| 468 |
|
</div></dd> |
| 469 |
|
<!-- |
| 470 |
All entities declared in the document type definition |
All entities declared in the document type definition |
| 471 |
contained in or referenced from the document entity |
contained in or referenced from the document entity |
| 472 |
might not be exposed through this collection, depending |
might not be exposed through this collection, depending |
| 486 |
the node is read-only. Note that the [CODE(DOMi)@en[[[NamedNodeMap]]]] object is live |
the node is read-only. Note that the [CODE(DOMi)@en[[[NamedNodeMap]]]] object is live |
| 487 |
and therefore any change of read-only flag on the node is immediately |
and therefore any change of read-only flag on the node is immediately |
| 488 |
reflected by that of the object. |
reflected by that of the object. |
| 489 |
|
--> |
| 490 |
The attribute [['''MUST''']] return the same value as the |
<dt><dfn id=notations class=dom-attr><code>notations</code></dfn> of type |
| 491 |
[CODE(DOMa)@en[[[entites]]]] attribute of the |
<code>notations</code>, read$B!>(Bonly</code> |
| 492 |
[CODE(DOMi)@en[[[DocumentType]]]] interface on the same node. |
<dd><p>A live <code>NamedNodeMap</code> object that contains all the |
| 493 |
|
notations belonging to the <code>DocumentType</code> node.</p> |
| 494 |
[4] The [DFN@en[[CODE(DOMa)@en[[[notations]]]] attribute]] |
|
| 495 |
of the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] interface |
<p>On getting, the attribute <em class=rfc2119>MUST</em> return the |
| 496 |
is a live [CODE(DOMi)@en[[[NamedNodeMap]]]] object that contains |
same value as the <code>notations</code> attribute (defined in the |
| 497 |
all the notations belong to the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] |
<code>DocumentType</code> interface) of the same node.</p> |
| 498 |
node. The type of the attribute is [CODE(DOMi)@en[[[NamedNodeMap]]]]. |
|
| 499 |
The attribute is read-only. |
<div class="note memo"> |
| 500 |
|
<p>This attribute is part of the interface for historical reason.</p> |
| 501 |
|
<p>Implementations are not required to implement the |
| 502 |
|
<code>notations</code> attribute twice (for <code>DocumentType</code> |
| 503 |
|
and <code>DocumentTypeDefinition</code> interfaces); they share exactly |
| 504 |
|
same definition.</p> |
| 505 |
|
</div></dd> |
| 506 |
|
<!-- |
| 507 |
If the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] node is |
If the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] node is |
| 508 |
created from an XML document, duplicate notation declarations, if any, in DTD |
created from an XML document, duplicate notation declarations, if any, in DTD |
| 509 |
[['''MUST NOT''']] result in a node in the [CODE(DOMi)@en[[[NamedNodeMap]]]] |
[['''MUST NOT''']] result in a node in the [CODE(DOMi)@en[[[NamedNodeMap]]]] |
| 527 |
the node is read-only. Note that the [CODE(DOMi)@en[[[NamedNodeMap]]]] object is live |
the node is read-only. Note that the [CODE(DOMi)@en[[[NamedNodeMap]]]] object is live |
| 528 |
and therefore any change of read-only flag on the node is immediately |
and therefore any change of read-only flag on the node is immediately |
| 529 |
reflected by that of the object. |
reflected by that of the object. |
| 530 |
|
--> |
| 531 |
|
|
| 532 |
A DOM implementation is not required to implement the |
<dt class=ed>@@ other members... |
| 533 |
[CODE(DOMa)@en[[[notations]]]] attribute twice |
</dl> |
|
for the [CODE(DOMi)@en[[[DocumentType]]]] and |
|
|
the [CODE(DOMi)@en[[[DocumentTypeDefinition]]]] interfaces; |
|
|
the latter is defined to contain the same value as the former. |
|
| 534 |
|
|
| 535 |
|
<div class=ed> |
| 536 |
|
<p>A future version of this interface might define the |
| 537 |
|
<code>parameterEntities</code> and getter/setter for parameter entities. |
| 538 |
|
</div> |
| 539 |
|
|
|
** Open Issues (informative) |
|
|
|
|
|
[5] A future version of the interface might define the |
|
|
[CODE(DOMa)@en[[[parameterEntities]]]] attribute and |
|
|
getter/setter for parameter entities. |
|
|
</pre> |
|
| 540 |
</div> |
</div> |
| 541 |
|
|
| 542 |
<div class=section id=section-elementtypedefinition> |
<div class=section id=section-elementtypedefinition> |