@@ -38,43 +38,44 @@ _namespaces; OFMutableArray OF_GENERIC(OFXMLNode *) *_Nullable _children; } /*! - * The name of the element. + * @brief The name of the element. */ @property (copy, nonatomic) OFString *name; /*! - * The namespace of the element. + * @brief The namespace of the element. */ #ifndef __cplusplus @property OF_NULLABLE_PROPERTY (copy, nonatomic) OFString *namespace; #else @property OF_NULLABLE_PROPERTY (copy, nonatomic, getter=namespace, setter=setNamespace:) OFString *namespace_; #endif /*! - * The default namespace for the element to be used if there is no parent. + * @brief The default namespace for the element to be used if there is no + * parent. */ @property OF_NULLABLE_PROPERTY (copy, nonatomic) OFString *defaultNamespace; /*! - * An array with the attributes of the element + * @brief An array with the attributes of the element. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFArray OF_GENERIC(OFXMLAttribute *) *attributes; /*! - * An array of OFXMLNodes with all children of the element. + * @brief An array of OFXMLNodes with all children of the element. */ @property OF_NULLABLE_PROPERTY (nonatomic, copy) OFArray OF_GENERIC(OFXMLNode *) *children; /*! - * All children that are elements. + * @brief All children that are elements. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFXMLElement *) *elements; /*! * @brief Creates a new XML element with the specified name.