Classes | |
| class | LocalName |
| class | QualifiedName |
Public Member Functions | |
| LIBXML2_Element (LIBXML2_Document *aDocument) | |
| LIBXML2_IMPL_NODETYPE (ELEMENT) | |
| LIBXML2_NamedNodeMap * | attributes () |
| LIBXML2_Node * | shallowCloneNode (LIBXML2_Document *aDoc) |
| String | tagName () |
| String | getAttribute (const String &name) |
| void | setAttribute (const String &name, const String &value) |
| void | removeAttribute (const String &name) |
| LIBXML2_Attr * | getAttributeNode (const String &name) |
| LIBXML2_Attr * | setAttributeNode (LIBXML2_Attr *newAttr) |
| LIBXML2_Attr * | removeAttributeNode (LIBXML2_Attr *oldAttr) |
| LIBXML2_NodeList * | getElementsByTagName (const String &name) |
| String | getAttributeNS (const String &namespaceURI, const String &localname) |
| void | setAttributeNS (const String &namespaceURI, const String &qualifiedname, const String &value) |
| void | removeAttributeNS (const String &namespaceURI, const String &localname) |
| LIBXML2_Attr * | getAttributeNodeNS (const String &namespaceURI, const String &localname) |
| LIBXML2_Attr * | setAttributeNodeNS (LIBXML2_Attr *newAttr) |
| LIBXML2_NodeList * | getElementsByTagNameNS (const String &namespaceURI, const String &localname) |
| bool | hasAttribute (const String &name) |
| bool | hasAttributeNS (const String &namespaceURI, const String &localname) |
| bool | hasAttributes () |
| LIBXML2_Element * | searchForElementById (const String &elementId) |
| Public Member Functions inherited from Arcane::LIBXML2_Node | |
| LIBXML2_Node (LIBXML2_Document *aDocument) | |
| String | nodeName () |
| String | nodeValue () |
| void | nodeValue (const String &attr) |
| virtual UInt16 | nodeType () |
| LIBXML2_Node * | parentNode () |
| LIBXML2_NodeList * | childNodes () |
| LIBXML2_Node * | firstChild () |
| LIBXML2_Node * | lastChild () |
| LIBXML2_Node * | previousSibling () |
| LIBXML2_Node * | nextSibling () |
| LIBXML2_NamedNodeMap * | attributes () |
| LIBXML2_Document * | ownerDocument () |
| LIBXML2_Node * | insertBefore (LIBXML2_Node *newChild, LIBXML2_Node *refChild) |
| LIBXML2_Node * | insertBeforePrivate (LIBXML2_Node *newChild, LIBXML2_Node *refChild) |
| LIBXML2_Node * | replaceChild (LIBXML2_Node *newChild, LIBXML2_Node *oldChild) |
| LIBXML2_Node * | removeChild (LIBXML2_Node *oldChild) |
| LIBXML2_Node * | removeChildPrivate (LIBXML2_Node *oldChild) |
| LIBXML2_Node * | appendChild (LIBXML2_Node *newChild) |
| bool | hasChildNodes () |
| virtual LIBXML2_Node * | cloneNode (bool deep) |
| LIBXML2_Node * | cloneNodePrivate (LIBXML2_Document *aDoc, bool deep) |
| void | normalize () |
| bool | isSupported (const String &feature, const String &version) |
| String | namespaceURI () |
| String | prefix () |
| void | prefix (const String &attr) |
| String | localName () |
| bool | hasAttributes () |
| void | updateDocumentAncestorStatus (bool aStatus) |
| void | recursivelyChangeDocument (LIBXML2_Document *aNewDocument) |
| LIBXML2_Element * | searchForElementById (const String &elementId) |
| void | add_ref () |
| void | release_ref () |
Static Public Member Functions | |
| static const char * | INTERFACE_NAME () |
| Static Public Member Functions inherited from Arcane::LIBXML2_Node | |
| static const char * | INTERFACE_NAME () |
Public Attributes | |
| LIBXML2_IMPL_REFCOUNT | |
| std::map< QualifiedName, LIBXML2_Attr * > | attributeMapNS |
| std::map< LocalName, LIBXML2_Attr * > | attributeMap |
| Public Attributes inherited from Arcane::LIBXML2_Node | |
| LIBXML2_Node * | mParent |
| std::list< LIBXML2_Node * >::iterator | mPositionInParent |
| bool | mDocumentIsAncestor |
| LIBXML2_Document * | mDocument |
| String | mNodeName |
| String | mLocalName |
| String | mNodeValue |
| String | mNamespaceURI |
| std::list< LIBXML2_Node * > | mNodeList |
| UInt16 | mNodeType |
| LIBXML2_RefCount | _libxml2_refcount |
Additional Inherited Members | |
| Static Public Attributes inherited from Arcane::LIBXML2_Node | |
| static const UInt16 | NODE_NODE = 0 |
| static const UInt16 | ELEMENT_NODE = 1 |
| static const UInt16 | ATTRIBUTE_NODE = 2 |
| static const UInt16 | TEXT_NODE = 3 |
| static const UInt16 | CDATA_SECTION_NODE = 4 |
| static const UInt16 | ENTITY_REFERENCE_NODE = 5 |
| static const UInt16 | ENTITY_NODE = 6 |
| static const UInt16 | PROCESSING_INSTRUCTION_NODE = 7 |
| static const UInt16 | COMMENT_NODE = 8 |
| static const UInt16 | DOCUMENT_NODE = 9 |
| static const UInt16 | DOCUMENT_TYPE_NODE = 10 |
| static const UInt16 | DOCUMENT_FRAGMENT_NODE = 11 |
| static const UInt16 | NOTATION_NODE = 12 |
Definition at line 564 of file DomLibXml2.cc.
|
inline |
Definition at line 568 of file DomLibXml2.cc.
|
virtual |
Definition at line 4776 of file DomLibXml2.cc.
| LIBXML2_NamedNodeMap * Arcane::LIBXML2_Element::attributes | ( | ) |
Definition at line 4798 of file DomLibXml2.cc.
Definition at line 4816 of file DomLibXml2.cc.
| LIBXML2_Attr * Arcane::LIBXML2_Element::getAttributeNode | ( | const String & | name | ) |
Definition at line 4864 of file DomLibXml2.cc.
| LIBXML2_Attr * Arcane::LIBXML2_Element::getAttributeNodeNS | ( | const String & | namespaceURI, |
| const String & | localname ) |
Definition at line 4992 of file DomLibXml2.cc.
| String Arcane::LIBXML2_Element::getAttributeNS | ( | const String & | namespaceURI, |
| const String & | localname ) |
Definition at line 4929 of file DomLibXml2.cc.
| LIBXML2_NodeList * Arcane::LIBXML2_Element::getElementsByTagName | ( | const String & | name | ) |
Definition at line 4923 of file DomLibXml2.cc.
| LIBXML2_NodeList * Arcane::LIBXML2_Element::getElementsByTagNameNS | ( | const String & | namespaceURI, |
| const String & | localname ) |
Definition at line 5034 of file DomLibXml2.cc.
| bool Arcane::LIBXML2_Element::hasAttribute | ( | const String & | name | ) |
Definition at line 5040 of file DomLibXml2.cc.
| bool Arcane::LIBXML2_Element::hasAttributeNS | ( | const String & | namespaceURI, |
| const String & | localname ) |
Definition at line 5046 of file DomLibXml2.cc.
| bool Arcane::LIBXML2_Element::hasAttributes | ( | ) |
Definition at line 4804 of file DomLibXml2.cc.
|
inlinestatic |
Definition at line 567 of file DomLibXml2.cc.
| void Arcane::LIBXML2_Element::removeAttribute | ( | const String & | name | ) |
Definition at line 4844 of file DomLibXml2.cc.
| LIBXML2_Attr * Arcane::LIBXML2_Element::removeAttributeNode | ( | LIBXML2_Attr * | oldAttr | ) |
Definition at line 4900 of file DomLibXml2.cc.
| void Arcane::LIBXML2_Element::removeAttributeNS | ( | const String & | namespaceURI, |
| const String & | localname ) |
Definition at line 4973 of file DomLibXml2.cc.
| LIBXML2_Element * Arcane::LIBXML2_Element::searchForElementById | ( | const String & | elementId | ) |
Definition at line 5052 of file DomLibXml2.cc.
Definition at line 4825 of file DomLibXml2.cc.
| LIBXML2_Attr * Arcane::LIBXML2_Element::setAttributeNode | ( | LIBXML2_Attr * | newAttr | ) |
Definition at line 4874 of file DomLibXml2.cc.
| LIBXML2_Attr * Arcane::LIBXML2_Element::setAttributeNodeNS | ( | LIBXML2_Attr * | newAttr | ) |
Definition at line 5003 of file DomLibXml2.cc.
| void Arcane::LIBXML2_Element::setAttributeNS | ( | const String & | namespaceURI, |
| const String & | qualifiedname, | ||
| const String & | value ) |
Definition at line 4939 of file DomLibXml2.cc.
|
virtual |
Reimplemented from Arcane::LIBXML2_Node.
Definition at line 4779 of file DomLibXml2.cc.
| String Arcane::LIBXML2_Element::tagName | ( | ) |
Definition at line 4810 of file DomLibXml2.cc.
| std::map<LocalName, LIBXML2_Attr*> Arcane::LIBXML2_Element::attributeMap |
Definition at line 633 of file DomLibXml2.cc.
| std::map<QualifiedName, LIBXML2_Attr*> Arcane::LIBXML2_Element::attributeMapNS |
Definition at line 632 of file DomLibXml2.cc.
| Arcane::LIBXML2_Element::LIBXML2_IMPL_REFCOUNT |
Definition at line 630 of file DomLibXml2.cc.