DOM Processing Instruction class. More...
Derived from: | public CL_DomNode |
Derived by: | None |
Group: | XML (Core) |
#include <ClanLib/core.h>
Class Members:
Attributes: | |
Returns the node name. | |
Returns the namespace URI of this node. | |
Returns the namespace prefix of the node. | |
Sets the namespace prefix of the node. | |
Returns local part of the qualified name of this node. | |
Returns the node value. | |
Sets the node value. | |
Returns the node type (one of those in the NodeType enum). | |
Returns the parent of this node. | |
Returns a NodeList that contains all children of this node. | |
The first child of this node. | |
The last child of this node. | |
The node immediately preceding this node. | |
The node immediately following this node. | |
A NamedNodeMap containing the attributes of this node (if it is an Element) or null otherwise. | |
The Document object associated with this node. | |
Returns true if this is a null node. | |
Returns true if this is an element node. | |
Returns true if this is an attribute node. | |
Returns true if this is a text node. | |
Returns true if this is a CDATA section node. | |
Returns true if this is an entity reference node. | |
Returns true if this is an entity node. | |
Returns true if this is a processing instruction node. | |
Returns true if this is a comment node. | |
Returns true if this is a document node. | |
Returns true if this is a document type node. | |
Returns true if this is a document fragment node. | |
Returns true if this is a notation node. | |
Tests whether the DOM implementation implements a specific feature and that feature is supported by this node. | |
Returns true if this node (if its an element) has any attributes. | |
Returns true if this node has any children. | |
An integer indicating which type of node this is. |
| |
Compare operator. | |
Compare operator. | |
Merges any adjacent Text nodes. | |
Inserts the node new_child before the existing child node ref_child. | |
Replaces the child node old_child with new_child in the list of children. | |
Removes the child node indicated by old_child from the list of children, and returns it. | |
Adds the node new_child to the end of the list of children of this node. | |
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. | |
Returns the Element interface to this node. | |
Returns the Attribute interface to this node. | |
Returns the Text interface to this node. | |
Returns the CDATA Section interface to this node. | |
Returns the Entity Reference interface to this node. | |
Returns the Entity interface to this node. | |
Returns the Processing Instruction interface to this node. | |
Returns the Comment interface to this node. | |
Returns the Document interface to this node. | |
Returns the Document Type interface to this node. | |
Returns the Document Fragment interface to this node. | |
Returns the Notation interface to this node. | |
Returns the first child node with the specified node name. | |
Retrieves the first child node with the specified namespace URI and local name. | |
Searches the node tree upwards for the namespace URI of the given qualified name. | |
Searches the node tree upwards for the prefix name for the namespace URI. | |
Returns all the nodes matching the specified xpath expression using this node as the context node. | |
Returns the first node matching the specified xpath expression using this node as the context node. | |
Returns the first node value matching the specified xpath expression using this node as the context node. | |
Returns the first node value (as integer) matching the specified xpath expression using this node as the context node. | |
Returns the first node value (as float) matching the specified xpath expression using this node as the context node. | |
Returns the first node value (as boolean) matching the specified xpath expression using this node as the context node. |
| |
Constructs a DOM Processing Instruction handle. |
| |
The target of this processing instruction. | |
The content of this processing instruction. | |
Set data. |
Detailed description:
The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.