90
91
92
93
94
95
96
97
98
99
100
101
102
|
90
91
92
93
94
95
96
97
98
99
100
101
102
|
-
+
-
+
-
+
|
* \param ID The value for the stanza's id attribute
* \return A initialized XMPPMessage
*/
- initWithType: (OFString*)type
ID: (OFString*)ID;
/**
* Adds a body element to the XMPPMessage
* Sets the body element of the XMPPMessage.
*
* \param body The text content of the body element
* \param body The text content of the body element or nil to remove the body
*/
- (void)addBody: (OFString*)body;
- (void)setBody: (OFString*)body;
@end
|