Add \cond internal for private methods.

This commit is contained in:
Jonathan Schleifer 2012-02-03 10:46:42 +01:00
parent a2e8b90ef2
commit da97470a1d
4 changed files with 8 additions and 0 deletions

View file

@ -286,6 +286,7 @@
- (void)setPort: (uint16_t)port; - (void)setPort: (uint16_t)port;
- (uint16_t)port; - (uint16_t)port;
/// \cond internal
- (void)XMPP_startStream; - (void)XMPP_startStream;
- (void)XMPP_handleStream: (OFXMLElement*)element; - (void)XMPP_handleStream: (OFXMLElement*)element;
- (void)XMPP_handleTLS: (OFXMLElement*)element; - (void)XMPP_handleTLS: (OFXMLElement*)element;
@ -304,6 +305,7 @@
- (void)XMPP_handleSession: (XMPPIQ*)iq; - (void)XMPP_handleSession: (XMPPIQ*)iq;
- (OFString*)XMPP_IDNAToASCII: (OFString*)domain; - (OFString*)XMPP_IDNAToASCII: (OFString*)domain;
- (XMPPMulticastDelegate*)XMPP_delegates; - (XMPPMulticastDelegate*)XMPP_delegates;
/// \endcond
@end @end
@interface OFObject (XMPPConnectionDelegate) <XMPPConnectionDelegate> @interface OFObject (XMPPConnectionDelegate) <XMPPConnectionDelegate>

View file

@ -128,11 +128,13 @@
*/ */
- (void)removeDelegate: (id <XMPPRosterDelegate>)delegate; - (void)removeDelegate: (id <XMPPRosterDelegate>)delegate;
/// \cond internal
- (void)XMPP_addRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_addRosterItem: (XMPPRosterItem*)rosterItem;
- (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_updateRosterItem: (XMPPRosterItem*)rosterItem;
- (void)XMPP_deleteRosterItem: (XMPPRosterItem*)rosterItem; - (void)XMPP_deleteRosterItem: (XMPPRosterItem*)rosterItem;
- (void)XMPP_handleInitialRoster: (XMPPIQ*)iq; - (void)XMPP_handleInitialRoster: (XMPPIQ*)iq;
- (XMPPRosterItem*)XMPP_rosterItemWithXMLElement: (OFXMLElement*)element; - (XMPPRosterItem*)XMPP_rosterItemWithXMLElement: (OFXMLElement*)element;
/// \endcond
@end @end
@interface OFObject (XMPPRosterDelegate) <XMPPRosterDelegate> @interface OFObject (XMPPRosterDelegate) <XMPPRosterDelegate>

View file

@ -109,6 +109,7 @@
hash: (Class)hash hash: (Class)hash
plusAvailable: (BOOL)plusAvailable; plusAvailable: (BOOL)plusAvailable;
/// \cond internal
- (OFString*)XMPP_genNonce; - (OFString*)XMPP_genNonce;
- (uint8_t*)XMPP_HMACWithKey: (OFDataArray*)key - (uint8_t*)XMPP_HMACWithKey: (OFDataArray*)key
data: (OFDataArray*)data; data: (OFDataArray*)data;
@ -117,4 +118,5 @@
iterationCount: (intmax_t)i; iterationCount: (intmax_t)i;
- (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data; - (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data;
- (OFDataArray*)XMPP_parseServerFinalMessage: (OFDataArray*)data; - (OFDataArray*)XMPP_parseServerFinalMessage: (OFDataArray*)data;
/// \endcond
@end @end

View file

@ -76,8 +76,10 @@
+ lookupWithDomain: (OFString*)domain; + lookupWithDomain: (OFString*)domain;
- initWithDomain: (OFString*)domain; - initWithDomain: (OFString*)domain;
/// \cond internal
- (void)XMPP_lookup; - (void)XMPP_lookup;
- (void)XMPP_addEntry: (XMPPSRVEntry*)item; - (void)XMPP_addEntry: (XMPPSRVEntry*)item;
/// \endcond
@end @end
@interface XMPPSRVEnumerator: OFEnumerator @interface XMPPSRVEnumerator: OFEnumerator