@@ -46,21 +46,21 @@ OFString *_name; const char *_typeEncoding; } /*! - * The selector of the method. + * @brief The selector of the method. */ @property (readonly, nonatomic) SEL selector; /*! - * The name of the method. + * @brief The name of the method. */ @property (readonly, nonatomic) OFString *name; /*! - * The type encoding for the method. + * @brief The type encoding for the method. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) const char *typeEncoding; - (instancetype)init OF_UNAVAILABLE; @end @@ -76,16 +76,16 @@ unsigned int _attributes; OFString *_Nullable _getter, *_Nullable _setter; } /*! - * The name of the property. + * @brief The name of the property. */ @property (readonly, nonatomic) OFString *name; /*! - * The attributes of the property. + * @brief The attributes of the property. * * The attributes are a bitmask with the following possible flags:@n * Flag | Description * ------------------------------|------------------------------------- * OF_PROPERTY_READONLY | The property is declared `readonly` @@ -100,16 +100,16 @@ * OF_PROPERTY_DYNAMIC | The property is dynamic */ @property (readonly, nonatomic) unsigned int attributes; /*! - * The name of the getter. + * @brief The name of the getter. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *getter; /*! - * @return The name of the setter. + * @brief The name of the setter. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *setter; - (instancetype)init OF_UNAVAILABLE; @end @@ -125,21 +125,21 @@ const char *_typeEncoding; ptrdiff_t _offset; } /*! - * The name of the instance variable. + * @brief The name of the instance variable. */ @property (readonly, nonatomic) OFString *name; /*! - * The offset of the instance variable. + * @brief The offset of the instance variable. */ @property (readonly, nonatomic) ptrdiff_t offset; /*! - * The type encoding for the instance variable. + * @brief The type encoding for the instance variable. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) const char *typeEncoding; - (instancetype)init OF_UNAVAILABLE; @end @@ -156,21 +156,21 @@ OFMutableArray OF_GENERIC(OFProperty *) *_properties; OFMutableArray OF_GENERIC(OFInstanceVariable *) *_instanceVariables; } /*! - * The class methods of the class. + * @brief The class methods of the class. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod *) *classMethods; /*! - * The instance methods of the class. + * @brief The instance methods of the class. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFMethod *) *instanceMethods; /*! - * The properties of the class. + * @brief The properties of the class. * * @warning **Do not rely on this, as this behaves differently depending on the * compiler and ABI used!** * * @warning For the ObjFW ABI, Clang only emits data for property introspection @@ -188,11 +188,11 @@ * ABI. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFProperty *) *properties; /*! - * The instance variables of the class. + * @brief The instance variables of the class. */ @property (readonly, nonatomic) OFArray OF_GENERIC(OFInstanceVariable *) *instanceVariables; /* TODO: protocols */