#include <dom_named_node_map.h>
Implementation | |
| CL_DomNamedNodeMap (const CL_SharedPtr< CL_DomNamedNodeMap_Generic > &impl) | |
| Constructs a DomNamedNodeMap. | |
| CL_SharedPtr< CL_DomNamedNodeMap_Generic > | impl |
| class | CL_DomNode |
Public Member Functions | |
Construction | |
| CL_DomNamedNodeMap () | |
| Constructs a DOM NamedNodeMap handle. | |
| CL_DomNamedNodeMap (const CL_DomNamedNodeMap ©) | |
| Constructs a DomNamedNodeMap. | |
| ~CL_DomNamedNodeMap () | |
Attributes | |
| int | get_length () const |
| The number of nodes in the map. | |
Operations | |
| CL_DomNode | get_named_item (const CL_DomString &name) const |
| Retrieves a node specified by name. | |
| CL_DomNode | get_named_item_ns (const CL_DomString &namespace_uri, const CL_DomString &local_name) const |
| Retrieves a node specified by namespace URI and local name. | |
| CL_DomNode | set_named_item (const CL_DomNode &node) |
| Adds a node using its node name attribute. | |
| CL_DomNode | set_named_item_ns (const CL_DomNode &node) |
| Adds a node using its namespace URI and local name. | |
| CL_DomNode | remove_named_item (const CL_DomString &name) |
| Removes a node specified by name. | |
| CL_DomNode | remove_named_item_ns (const CL_DomString &namespace_uri, const CL_DomString &local_name) |
| Removes a node specified by namespace URI and local name. | |
| CL_DomNode | item (unsigned long index) const |
| Returns the indexth item in the map. | |
Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name. Note that NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not maintained in any particular order. Objects contained in an object implementing NamedNodeMap may also be accessed by an ordinal index, but this is simply to allow convenient enumeration of the contents of a NamedNodeMap, and does not imply that the DOM specifies an order to these Nodes.
|
|
Constructs a DOM NamedNodeMap handle.
|
|
|
Constructs a DomNamedNodeMap.
|
|
|
|
|
|
Constructs a DomNamedNodeMap.
|
|
|
The number of nodes in the map.
|
|
|
Retrieves a node specified by name.
|
|
||||||||||||
|
Retrieves a node specified by namespace URI and local name.
|
|
|
Returns the indexth item in the map. If index is greater than or equal to the number of nodes in the map, this returns null. |
|
|
Removes a node specified by name. If the removed node is an Attr with a default value it is immediately replaced.
|
|
||||||||||||
|
Removes a node specified by namespace URI and local name. If the removed node is an Attr with a default value it is immediately replaced.
|
|
|
Adds a node using its node name attribute. As the node name attribute is used to derive the name which the node must be stored under, multiple nodes of certain types (those that have a "special" string value) cannot be stored as the names would clash. This is seen as preferable to allowing nodes to be aliased.
|
|
|
Adds a node using its namespace URI and local name. If a node with that namespace URI and that local name is already present in this map, it is replaced by the new one. |
|
|
|
|
|
|
1.4.6