File: ProcessingInstruction.xml

package info (click to toggle)
gmetadom 0.2.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,396 kB
  • ctags: 1,195
  • sloc: sh: 8,353; xml: 3,772; cpp: 3,113; ansic: 2,660; ml: 932; makefile: 930
file content (27 lines) | stat: -rw-r--r-- 1,247 bytes parent folder | download | duplicates (9)
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
<?xml version="1.0" encoding="UTF-8"?>
<!--[ ProcessingInstruction object description ]-->
<!-- $Date: 2001/11/26 22:34:22 $ $Revision: 1.1.1.1 $ -->
<interface name="ProcessingInstruction" inherits="Node" id="ID-1004215813">
  <descr><p>The <code>ProcessingInstruction</code> interface
      represents a  &quot;processing instruction&quot;, used in XML
      as a way to keep processor-specific information in the text of the
      document.</p></descr>
  <attribute readonly="yes" type="DOMString" name="target" id="ID-1478689192">
    <descr><p>The target of this processing instruction. XML defines this as
	being the first <termref def="dt-token">token</termref> following the 
        markup that begins the processing instruction.</p></descr>
  </attribute>
  <attribute type="DOMString" name="data" id="ID-837822393">
    <descr><p>The content of this processing instruction. This
	is from the first non white space character after the target
	to the character immediately preceding the <code>?&gt;</code>.</p>
    </descr>
    <setraises>
      <exception name="DOMException">
	<descr><p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is
	    readonly.</p></descr>
      </exception>
    </setraises>
  </attribute>
</interface>