Differences From Artifact [4b04a1a1a1]:
- File src/OFXMLElement.h — part of check-in [062a052b50] at 2010-04-17 15:46:34 on branch trunk — Don't return self where not necessary, return void or something useful. (user: js, size: 4036) [annotate] [blame] [check-ins using]
To Artifact [52cc35da36]:
- File
src/OFXMLElement.h
— part of check-in
[37db8f0fb3]
at
2010-04-17 22:27:17
on branch trunk
— New ivar naming convention.
ivars are now named like this: thisIsAnIVar. If an accessor exists for
the ivar, the ivar is named like the accessor. This is required for
@property to work. (user: js, size: 4056) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 |
/**
* \brief A representation of an attribute of an XML element as an object.
*/
@interface OFXMLAttribute: OFObject
{
OFString *prefix;
OFString *name;
| | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/**
* \brief A representation of an attribute of an XML element as an object.
*/
@interface OFXMLAttribute: OFObject
{
OFString *prefix;
OFString *name;
OFString *namespace;
OFString *stringValue;
}
/**
* \param name The name of the attribute
* \param prefix The prefix of the attribute
* \param ns The namespace of the attribute
* \param value The string value of the attribute
|
| ︙ | ︙ | |||
80 81 82 83 84 85 86 |
*
* The OFXMLElement represents an XML element as an object which can be
* modified and converted back to XML again.
*/
@interface OFXMLElement: OFObject
{
OFString *name;
| | | | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
*
* The OFXMLElement represents an XML element as an object which can be
* modified and converted back to XML again.
*/
@interface OFXMLElement: OFObject
{
OFString *name;
OFMutableArray *attributes;
OFString *stringValue;
OFMutableArray *children;
}
/**
* \param name The name for the element
* \return A new autorelease OFXMLElement with the specified element name
*/
|
| ︙ | ︙ |