41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#endif
/**
* \brief Creates a new autoreleased XMPPJID.
*
* \return A new autoreleased XMPPJID
*/
+ JID;
/**
* \brief Creates a new autoreleased XMPPJID from a string.
*
* \param string The string to parse into a JID object
* \return A new autoreleased XMPPJID
*/
+ JIDWithString: (OFString*)string;
/**
* \brief Initializes an already allocated XMPPJID with a string.
*
* \param string The string to parse into a JID object
* \return A initialized XMPPJID
*/
|
|
|
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#endif
/**
* \brief Creates a new autoreleased XMPPJID.
*
* \return A new autoreleased XMPPJID
*/
+ (instancetype)JID;
/**
* \brief Creates a new autoreleased XMPPJID from a string.
*
* \param string The string to parse into a JID object
* \return A new autoreleased XMPPJID
*/
+ (instancetype)JIDWithString: (OFString*)string;
/**
* \brief Initializes an already allocated XMPPJID with a string.
*
* \param string The string to parse into a JID object
* \return A initialized XMPPJID
*/
|