| Inherits from | NSObject |
| Declared in | GBCommentArgument.h<br />GBCommentArgument.m |
Describes an argument of a GBComment .
An argument is a named argument such as parameter or exception. It contains the argument (parameter or exception) name as argumentName and corresponding description in the form of GBCommentParagraph as argumentDescription .
+ argumentWithName:description:
Returns a new autoreleased argument with the given name and description.
+ argument
Returns a new autoreleased argument with no name and description.
argumentName
The name of the argument.
argumentDescription
Description of the argument as `GBCommentParagraph.
Returns a new autoreleased argument with no name and description.
+ (id)argumentReturns a new autoreleased argument with no name and description.
GBCommentArgument.hGBCommentArgument.mReturns a new autoreleased argument with the given name and description.
+ (id)argumentWithName:(NSString *)name description:(GBCommentParagraph *)descriptionReturns initialized instance.
Returns a new autoreleased argument with the given name and description.
Sending this method is equivalent to:
GBCommentArgument *argument = [[[GBCommentArgument alloc] init] autorelease]; argument.argumentName = name; argument.argumentDescription = description;
nil or empty string or description is nil . GBCommentArgument.hGBCommentArgument.mDescription of the argument as `GBCommentParagraph.
@property (retain) GBCommentParagraph *argumentDescriptionDescription of the argument as `GBCommentParagraph.
GBCommentArgument.h