@@ -26,39 +26,39 @@ * * @brief A class which stores an XML element. */ @interface OFXMLNode: OFObject /*! - * The contents of the node as a string value. + * @brief The contents of the node as a string value. * * For an @ref OFXMLElement, setting it removes all children and creates a * single child with the specified string value. */ @property (nonatomic, copy) OFString *stringValue; /*! - * The contents of the receiver as a decimal value. + * @brief The contents of the receiver as a decimal value. */ @property (readonly, nonatomic) intmax_t decimalValue; /*! - * The contents of the receiver as a hexadecimal value. + * @brief The contents of the receiver as a hexadecimal value. */ @property (readonly, nonatomic) uintmax_t hexadecimalValue; /*! - * The contents of the receiver as a float value. + * @brief The contents of the receiver as a float value. */ @property (readonly, nonatomic) float floatValue; /*! - * The contents of the receiver as a double value. + * @brief The contents of the receiver as a double value. */ @property (readonly, nonatomic) double doubleValue; /*! - * A string representing the node as an XML string. + * @brief A string representing the node as an XML string. */ @property (readonly, nonatomic) OFString *XMLString; - (instancetype)init OF_UNAVAILABLE; - (instancetype)initWithSerialization: (OFXMLElement *)element OF_UNAVAILABLE;