@@ -22,12 +22,12 @@ */ @interface OFXMLAttribute: OFObject { OFString *prefix; OFString *name; - OFString *ns; - OFString *value; + OFString *namespace; + OFString *stringValue; } /** * \param name The name of the attribute * \param prefix The prefix of the attribute @@ -82,12 +82,12 @@ * modified and converted back to XML again. */ @interface OFXMLElement: OFObject { OFString *name; - OFMutableArray *attrs; - OFString *stringval; + OFMutableArray *attributes; + OFString *stringValue; OFMutableArray *children; } /** * \param name The name for the element