1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<?xml version="1.0" encoding="UTF-8"?>
<interface name="Notation" inherits="Node" id="ID-5431D1B9">
<!-- $Date: 2001/11/26 22:34:21 $ $Revision: 1.1.1.1 $ -->
<descr>
<p>This interface represents a notation declared in the DTD. A notation
either declares, by name, the format of an unparsed entity (see <xspecref
href="xml-spec;#Notations">section 4.7</xspecref>
of the XML 1.0 specification <bibref ref="XML"/>), or is used for formal
declaration of
processing instruction targets (see <xspecref
href="xml-spec;#sec-pi">section 2.6</xspecref> of the XML 1.0
specification <bibref ref="XML"/>). The <code>nodeName</code> attribute
inherited from
<code>Node</code> is set to the declared name of the notation.</p>
<p>The DOM Level 1 does not support editing <code>Notation</code>
nodes; they are therefore
<termref def="dt-readonly-node">readonly</termref>.</p>
<p>A <code>Notation</code> node does not have any parent.</p>
</descr>
<attribute readonly="yes" name="publicId" type="DOMString" id="ID-54F2B4D0">
<descr><p>The public identifier of this notation. If the
public identifier was not specified, this is <code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" name="systemId" type="DOMString" id="ID-E8AAB1D0">
<descr><p>The system identifier of this notation. If the
system identifier was not specified, this is <code>null</code>.</p>
</descr>
</attribute>
</interface>
|