iTP Active Transaction Pages (iTP ATP) Programmer's Guide

XML for ATP Add-On Module
iTP Active Transaction Pages (iTP ATP) Programmer’s Guide522292-002
5-2
XMLDOMNode Object
XMLDOMNode Object
The XMLDOMNode object is the principal object within the Document Object Model
(DOM). Elements, attributes, comments, processing instructions, and every other
document component can be represented as an XMLDOMNode object. The
DOMDocument Object is itself an XMLDOMNode object, as are the members of node
lists and named node maps.
Table 5-2
specifies the common properties of XMLDOMNode and other DOM objects.
XMLDOMImplementation Object
Provides methods that are independent of any
particular instance of the document object model.
XMLDOMNotation Object
Contains a notation declared in the document type
definition (DTD) file or XML schema.
XMLDOMProcessingInstruction
Object
Represents a processing instruction, which XML
defines to keep processor-specific information in the
text of the document.
XMLDOMCharacterData Object
Quotes or escapes blocks of text so that text is not
interpreted as markup language.
XMLDOMComment Object
Represents the content of an XML comment.
XMLDOMText Object
Represents the text content of an element or attribute.
XMLDOMCDATASection Object
Refers to the data from an XML CDATA section.
Table 5-2. Common Properties of XMLDOMNode and Other DOM
Objects (page 1 of 2)
Property Description
attributes Contains an XMLDOMNamedNodeMap Object, which stores
all attributes of this node.
childNodes Contains an XMLDOMNodeList Object, which stores all
children of this node.
firstChild Contains the first child of this node.
lastChild Contains the last child of this node.
nextSibling Contains the node immediately following this node in the
parent’s child list.
nodeName Contains the name of this document.
nodeType Specifies the XMLDOM node type, which determines valid
values and whether the node can have child nodes.
nodeValue Contains the text value associated with the node.
ownerDocument Returns the root of the document that contains this node.
Table 5-1. XML for ATP DOM Objects (page 2 of 2)
Object Description