69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
-
+
-
+
-
-
+
+
|
/*!
* @brief Initializes an already allocated XMPPMessage with the specified ID.
*
* @param ID The value for the stanza's id attribute
* @return A initialized XMPPMessage
*/
- initWithID: (nullable OFString *)ID;
- (instancetype)initWithID: (nullable OFString *)ID;
/*!
* @brief Initializes an already allocated XMPPMessage with the specified type.
*
* @param type The value for the stanza's type attribute
* @return A initialized XMPPMessage
*/
- initWithType: (nullable OFString *)type;
- (instancetype)initWithType: (nullable OFString *)type;
/*!
* @brief Initializes an already allocated XMPPMessage with the specified type
* and ID.
*
* @param type The value for the stanza's type attribute
* @param ID The value for the stanza's id attribute
* @return A initialized XMPPMessage
*/
- initWithType: (nullable OFString *)type
ID: (nullable OFString *)ID OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithType: (nullable OFString *)type
ID: (nullable OFString *)ID OF_DESIGNATED_INITIALIZER;
@end
OF_ASSUME_NONNULL_END
|