#include <Node.h>
Inheritance diagram for zypp::xml::Node:

Public Member Functions | |
| Node () | |
| Default ctor. | |
| Node (xmlTextReaderPtr const &reader_r) | |
| Ctor referencing a Reader. | |
| int | attributeCount () const |
| Provides the number of attributes of the current node. | |
| XmlString | baseUri () const |
| The base URI of the node. | |
| int | columnNumber () const |
| Provide the column number of the current parsing point. | |
| int | depth () const |
| The depth of the node in the tree. | |
| XmlString | encoding () const |
| Determine the encoding of the document being read. | |
| XmlString | getAttribute (const char *name_r) const |
| Provides a copy of the attribute value with the specified qualified name. | |
| XmlString | getAttributeNo (int no_r) const |
| Provides a copy of the attribute value with the specified index relative to the containing element. | |
| int | hasAttributes () const |
| Whether the node has attributes. | |
| int | hasValue () const |
| Whether the node can have a text value. | |
| bool | isAttribute () const |
| Whether this is an Attribute node. | |
| int | isDefault () const |
| Whether an Attribute node was generated from the default value defined in the DTD or schema. | |
| int | isEmptyElement () const |
| Check if the current node is empty. | |
| int | isNamespaceDecl () const |
| Determine whether the current node is a namespace declaration rather than a regular attribute. | |
| int | lineNumber () const |
| Provide the line number of the current parsing point. | |
| XmlString | localName () const |
| The local name of the node. | |
| XmlString | name () const |
| The qualified name of the node, equal to Prefix :LocalName. | |
| XmlString | namespaceUri () const |
| The URI defining the namespace associated with the node. | |
| NodeType | nodeType () const |
| Get the node type of the current node. | |
| XmlString | prefix () const |
| A shorthand reference to the namespace associated with the node. | |
| int | quoteChar () const |
| The quotation mark character used to enclose the value of an attribute. | |
| ReadState | readState () const |
| Gets the read state of the reader. | |
| XmlString | value () const |
| Provides the text value of the node if present. | |
| XmlString | getValue () const |
| Provides a copy of the text value of the node if present. | |
| XmlString | xmlLang () const |
| The xml:lang scope within which the node resides. | |
| XmlString | xmlVersion () const |
| Determine the XML version of the document being read. | |
Private Member Functions | |
| friend | base::SafeBool () const |
| bool | boolTest () const |
| SafeBool test. | |
Private Attributes | |
| xmlTextReaderPtr const & | _reader |
| Reference to the Reader. | |
Static Private Attributes | |
| static xmlTextReaderPtr const | _no_reader = 0 |
| NULL Reader referenced by default ctor. | |
Related Functions | |
| (Note that these are not member functions.) | |
| std::ostream & | operator<< (std::ostream &str, const Node &obj) |
Node provides xmlTextReader methods that do not change the readers position in the file. Mostly access to the nodes attributes.
Definition at line 37 of file Node.h.
|
|
Default ctor.
|
|
|
Ctor referencing a Reader.
|
|
|
Provides the number of attributes of the current node.
Definition at line 51 of file Node.h. References _reader. |
|
|
The base URI of the node.
Definition at line 55 of file Node.h. References _reader. |
|
|
Provide the column number of the current parsing point.
Definition at line 59 of file Node.h. References _reader. |
|
|
The depth of the node in the tree.
Definition at line 63 of file Node.h. References _reader. Referenced by zypp::xml::Reader::seekToEndNode(), and zypp::xml::Reader::seekToNode(). |
|
|
Determine the encoding of the document being read.
Definition at line 67 of file Node.h. References _reader. |
|
|
Provides a copy of the attribute value with the specified qualified name.
Definition at line 72 of file Node.h. References _reader, and zypp::xml::XmlString::FREE. |
|
|
Provides a copy of the attribute value with the specified index relative to the containing element.
Definition at line 78 of file Node.h. References _reader, and zypp::xml::XmlString::FREE. |
|
|
Whether the node has attributes.
Definition at line 82 of file Node.h. References _reader. |
|
|
Whether the node can have a text value.
Definition at line 86 of file Node.h. References _reader. |
|
|
Whether this is an Attribute node.
Definition at line 90 of file Node.h. References nodeType(). Referenced by zypp::xml::Reader::foreachNode(). |
|
|
Whether an Attribute node was generated from the default value defined in the DTD or schema.
Definition at line 95 of file Node.h. References _reader. |
|
|
Check if the current node is empty.
Definition at line 99 of file Node.h. References _reader. Referenced by zypp::xml::Reader::seekToEndNode(). |
|
|
Determine whether the current node is a namespace declaration rather than a regular attribute.
Definition at line 104 of file Node.h. References _reader. |
|
|
Provide the line number of the current parsing point.
Definition at line 108 of file Node.h. References _reader. |
|
|
The local name of the node.
Definition at line 112 of file Node.h. References _reader. |
|
|
The qualified name of the node, equal to Prefix :LocalName.
Definition at line 116 of file Node.h. References _reader. Referenced by zypp::xml::Reader::seekToEndNode(), and zypp::xml::Reader::seekToNode(). |
|
|
The URI defining the namespace associated with the node.
Definition at line 120 of file Node.h. References _reader. |
|
|
Get the node type of the current node.
Definition at line 124 of file Node.h. References _reader. Referenced by isAttribute(), zypp::xml::Reader::seekToEndNode(), and zypp::xml::Reader::seekToNode(). |
|
|
A shorthand reference to the namespace associated with the node.
Definition at line 128 of file Node.h. References _reader. Referenced by zypp::xml::operator<<(). |
|
|
The quotation mark character used to enclose the value of an attribute.
Definition at line 133 of file Node.h. References _reader. |
|
|
Gets the read state of the reader.
Definition at line 137 of file Node.h. References _reader. Referenced by zypp::xml::Reader::atEnd(). |
|
|
Provides the text value of the node if present.
Definition at line 141 of file Node.h. References _reader. |
|
|
Provides a copy of the text value of the node if present.
Definition at line 145 of file Node.h. References _reader, and zypp::xml::XmlString::FREE. |
|
|
The xml:lang scope within which the node resides.
Definition at line 149 of file Node.h. References _reader. |
|
|
Determine the XML version of the document being read.
Definition at line 153 of file Node.h. References _reader. |
|
|
|
|
|
SafeBool test.
Definition at line 165 of file Node.h. References _reader. |
|
||||||||||||
|
Stream output. |
|
|
NULL Reader referenced by default ctor.
|
|
|
Reference to the Reader.
Definition at line 160 of file Node.h. Referenced by attributeCount(), baseUri(), boolTest(), columnNumber(), depth(), encoding(), getAttribute(), getAttributeNo(), getValue(), hasAttributes(), hasValue(), isDefault(), isEmptyElement(), isNamespaceDecl(), lineNumber(), localName(), name(), namespaceUri(), nodeType(), prefix(), quoteChar(), readState(), value(), xmlLang(), and xmlVersion(). |
1.4.6