From: Alexander Strange Date: Wed, 5 Feb 2003 06:33:14 +0000 (+0000) Subject: Replacement of all comments with HeaderDoc X-Git-Tag: v1.0~246 X-Git-Url: http://git.ithinksw.org/MenuTunes.git/commitdiff_plain/cd6e87dff75957b5863cc2388b6732e840db898e Replacement of all comments with HeaderDoc --- diff --git a/ITMTRemote.h b/ITMTRemote.h index 3527c85..3e8c9bd 100755 --- a/ITMTRemote.h +++ b/ITMTRemote.h @@ -34,32 +34,47 @@ */ @protocol ITMTRemote -/*! @method remote: - * @abstract Return an autoreleased instance of the remote. +/*! @method remote + * @abstract Returns an autoreleased instance of the remote. * @discussion Should be very quick and compact. - * EXAMPLE: - * + (id)remote - * { - * return [[[MyRemote alloc] init] autorelease]; - * } - * @result The instance. + * EXAMPLE: + * + (id)remote + * { + * return [[[MyRemote alloc] init] autorelease]; + * } + * @result The instance. */ + (id)remote; +/*! @method title: + * @abstract Returns an autoreleased instance of the remote. + * @result An NSString containing the title. + */ - (NSString *)title; -// Return the title of the remote. +/*! @method description: + * @abstract Returns a description of the remote. + * @result An NSString containing the description. + */ - (NSString *)description; -// Return a short description of the remote. +/*! @method icon: + * @abstract Returns a icon for the remote. + * @result An NSImage containing the icon. + */ - (NSImage *)icon; -// Return a 16x16 icon representation for the remote. +/*! @method begin: + * @abstract Sent when the plugin should begin operation. + * @result A result code signifying success. + */ - (BOOL)begin; -// Sent to the plugin when it should begin operation. +/*! @method halt: + * @abstract Sent when the plugin should cease operation. + * @result A result code signifying success. + */ - (BOOL)halt; -// Sent to the plugin when it should cease operation. - (NSArray *)sources; - (int)currentSourceIndex;