22 #if !defined(XERCESC_INCLUDE_GUARD_DOMNAMEDNODEMAP_HPP)
23 #define XERCESC_INCLUDE_GUARD_DOMNAMEDNODEMAP_HPP
25 #include <xercesc/util/XercesDefs.hpp>
27 XERCES_CPP_NAMESPACE_BEGIN
186 const XMLCh *localName)
const = 0;
236 const XMLCh *localName) = 0;
241 #define GetDOMNamedNodeMapMemoryManager GET_INDIRECT_MM(fOwnerNode)
243 XERCES_CPP_NAMESPACE_END
DOMNamedNodeMaps are used to represent collections of nodes that can be accessed by name.
Definition: DOMNamedNodeMap.hpp:45
virtual ~DOMNamedNodeMap()
Destructor.
Definition: DOMNamedNodeMap.hpp:75
virtual DOMNode * getNamedItemNS(const XMLCh *namespaceURI, const XMLCh *localName) const =0
Retrieves a node specified by local name and namespace URI.
virtual DOMNode * getNamedItem(const XMLCh *name) const =0
Retrieves a node specified by name.
virtual DOMNode * item(XMLSize_t index) const =0
Returns the indexth item in the map.
virtual DOMNode * removeNamedItem(const XMLCh *name)=0
Removes a node specified by name.
virtual XMLSize_t getLength() const =0
The number of nodes in the map.
virtual DOMNode * setNamedItemNS(DOMNode *arg)=0
Adds a node using its namespaceURI and localName.
virtual DOMNode * removeNamedItemNS(const XMLCh *namespaceURI, const XMLCh *localName)=0
Removes a node specified by local name and namespace URI.
virtual DOMNode * setNamedItem(DOMNode *arg)=0
Adds a node using its nodeName attribute.
DOMNamedNodeMap()
Definition: DOMNamedNodeMap.hpp:52
The DOMNode interface is the primary datatype for the entire Document Object Model.
Definition: DOMNode.hpp:139