#include <ogdf/fileformats/DinoXmlParser.h>
Public Member Functions | |
| XmlAttributeObject (HashedString *name, HashedString *value) | |
| ~XmlAttributeObject () | |
| const String & | getName () const |
| const String & | getValue () const |
| const bool & | valid () const |
| void | setValid () |
| void | setInvalid () |
Public Attributes | |
| HashedString * | m_pAttributeName |
| HashedString * | m_pAttributeValue |
| XmlAttributeObject * | m_pNextAttribute |
| bool | m_valid |
This struct represents an attribute associated to a tag.
Definition at line 71 of file DinoXmlParser.h.
| ogdf::XmlAttributeObject::XmlAttributeObject | ( | HashedString * | name, |
| HashedString * | value | ||
| ) | [inline] |
Constructor
Definition at line 87 of file DinoXmlParser.h.
| ogdf::XmlAttributeObject::~XmlAttributeObject | ( | ) | [inline] |
Destructor; will be performed in destroyParseTree().
Definition at line 94 of file DinoXmlParser.h.
| const String& ogdf::XmlAttributeObject::getName | ( | ) | const [inline] |
Getter.
Definition at line 100 of file DinoXmlParser.h.
| const String& ogdf::XmlAttributeObject::getValue | ( | ) | const [inline] |
Definition at line 104 of file DinoXmlParser.h.
| void ogdf::XmlAttributeObject::setInvalid | ( | ) | [inline] |
Definition at line 117 of file DinoXmlParser.h.
| void ogdf::XmlAttributeObject::setValid | ( | ) | [inline] |
Setter.
Definition at line 113 of file DinoXmlParser.h.
| const bool& ogdf::XmlAttributeObject::valid | ( | ) | const [inline] |
Definition at line 108 of file DinoXmlParser.h.
Contains the name of the attribute, i.e. for ... it contains "attr1"
Definition at line 76 of file DinoXmlParser.h.
Contains the value assigned to this attribute without qoutes, i.e. for ... it contains "value1" and not "\"value1"".
Definition at line 81 of file DinoXmlParser.h.
Pointer to the next attribute and 0 if this is the only attribute.
Definition at line 84 of file DinoXmlParser.h.
Flag denotes whether attribute is valid or not.
Definition at line 94 of file DinoXmlParser.h.