90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*!
* @brief Initializes an already allocated XMPPPresence with the specified ID.
*
* @param ID The value for the stanza's id attribute
* @return A initialized XMPPPresence
*/
- initWithID: (nullable OFString *)ID;
/*!
* @brief Initializes an already allocated XMPPPresence with the specified type.
*
* @param type The value for the stanza's type attribute
* @return A initialized XMPPPresence
*/
- initWithType: (nullable OFString *)type;
/*!
* @brief Initializes an already allocated XMPPPresence 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 XMPPPresence
*/
- initWithType: (nullable OFString *)type
ID: (nullable OFString *)ID;
@end
OF_ASSUME_NONNULL_END
|
|
|
|
|
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/*!
* @brief Initializes an already allocated XMPPPresence with the specified ID.
*
* @param ID The value for the stanza's id attribute
* @return A initialized XMPPPresence
*/
- (instancetype)initWithID: (nullable OFString *)ID;
/*!
* @brief Initializes an already allocated XMPPPresence with the specified type.
*
* @param type The value for the stanza's type attribute
* @return A initialized XMPPPresence
*/
- (instancetype)initWithType: (nullable OFString *)type;
/*!
* @brief Initializes an already allocated XMPPPresence 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 XMPPPresence
*/
- (instancetype)initWithType: (nullable OFString *)type
ID: (nullable OFString *)ID;
@end
OF_ASSUME_NONNULL_END
|