Lines Matching refs:node

48 It represents a single node in the document tree. While all objects implementing 
54 node information without casting down to the specific derived interface. In cases where
60 <p>The values of nodeName, nodeValue, and attributes vary according to the node type as follows:
74 <tr><th>Text </th><td>"#text" </td><td>content of the text node </td><td…
84 Adds the node newChild to the end of the list of children of this node.
86 the new child node
88 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does
89 not allow children of the type of the newChild node, or if the
90 node to append is one of this node's ancestors or this node itself.</p>
92 document than the one that created this node.</p>
93 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly or if
94 the previous parent of the node being inserted is readonly.</p>
99 Returns a duplicate of this node, i.e., serves as a generic copy
103 <true/>: clone node together with any children<br>
106 the cloned node
111 A NamedNodeMap containing the attributes of this node (if it is an Element)
117 A NodeList that contains all children of this node.
122 The first child of this node.
127 The last child of this node.
132 Returns the local part of the qualified name of this node.
137 The namespace URI of this node, or null if it is unspecified.
142 The node immediately following this node.
147 The name of this node, depending on its type; see the table above.
157 The value of this node, depending on its type; see the table above.
166 The Document object associated with this node.
171 The parent of this node.
176 The namespace prefix of this node, or null if it is unspecified.
181 The node immediately preceding this node.
186 Returns whether this node (if it is an element) has any attributes.
191 Returns whether this node has any children.
196 Inserts the node newChild before the existing child node refChild.
198 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does
199 not allow children of the type of the newChild node, or if the
200 node to insert is one of this node's ancestors or this node itself.
202 document than the one that created this node.
203 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly or if the
204 parent of the node being inserted is readonly.
205 <p>NOT_FOUND_ERR: Raised if refChild is not a child of this node.
211 that feature is supported by this node.
225 Removes the child node indicated by oldChild from the list of children,
228 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
229 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
234 Replaces the child node oldChild with newChild in the list of children,
235 and returns the oldChild node.
237 <p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that
238 does not allow children of the type of the newChild node, or
239 if the node to put in is one of this node's ancestors or this
240 node itself.
242 document than the one that created this node.
243 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node or the parent of the
244 new node is readonly.
245 <p>NOT_FOUND_ERR: Raised if oldChild is not a child of this node.
250 The value of this node, depending on its type; see the table above.
252 <p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
259 The namespace prefix of this node, or null if it is unspecified.
263 <p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
265 … in XML specification, if the namespaceURI of this node is null, if the specified
266 prefix is "xml" and the namespaceURI of this node is different from
267 "http://www.w3.org/XML/1998/namespace", if this node is an attribute and the
268 … specified prefix is "xmlns" and the namespaceURI of this node is different from
269 … " http://www.w3.org/2000/xmlns/", or if this node is an attribute and the qualifiedName
270 of this node is "xmlns" .