Problem:
There Should be a Documentation Comment written for each Method in the example SCParserDelegate Protocol.
Context:
I'm Building a Parsing Framework to be used by 3rd Party Developers. (This is my first Framework project, so my development process is Highly Academic to maximize learning.)
Sample Code:
/** @protocol SCParserDelegate
* @brief Protocol for a Delegate to handle Callbacks when an SCParser finds Tags
*/
@protocol SCParserDelegate
@required
@property (readonly) BOOL processing;
@optional
-(void)parserDidStart:(SCParser *)parser;
-(void)parserDidFinish:(SCParser *)parser;
-(void)parser:(SCParser *)parser didOpenTag:(SCTag *)tag;
-(void)parser:(SCParser *)parser didCloseTag:(SCTag *)tag;
-(void)parser:(SCParser *)parser didSingleTag:(SCTag *)tag;
-(void)parser:(SCParser *)parser whitelistDeniedTag:(SCTag *)tag;
-(void)parser:(SCParser *)parser parseErrorOccurred:(NSError *)parseError;
-(void)parser:(SCParser *)parser foundCharacters:(NSString *)content;
@end
Question:
How can I Manually Write my own Documentation Comment Blocks for each Method and Property within the Sample Code above?