Tags, depending on type, can introduce either one or two fields of information:
@function [FunctionName]
@param [parameterName] [Some descriptive text...]
In the tables below, the "Fields" column indicates the number of textual fields each type of tag takes.
The tags highlighted in RED below are required.
The @abstract and @discussion tags can be used within any of the type-specific tags below. For example,:
/*! @enum Beverage Categories @abstract Constants to group beverage types. @discussion These constants (such as kSoda, kBeer, etc.) can be used... */
They are not required within any HeaderDoc comment, but can improve the formatting of the HTML output, and can help automate the importation of comments into the Inside Mac documentation database.
|
|
Fields |
@function | The name of the function. |
|
@param | Each of the function's parameters. |
|
@result | The return value of the function. Don't include if the return value is void or OSERR |
|
Example:
/*! @function ConstructBLT @discussion Creates a Sandwich structure from the supplied arguments. @param b Top ingredient, typically protein-rich. @param l Middle ingredient. @param t Bottom ingredient, controls tartness. @param mayo A flag controlling addition of condiment. Use YES for condiment, HOLDTHE otherwise. @result A pointer to a Sandwich structure. Caller is responsible for disposing of this structure. */ Sandwich *ConstructBLT(Ingredient b, Ingredient l, Ingredient t, Boolean mayo);
|
|
Fields |
@struct / @union | The name of the structure or union. (Also known as the struct or union's tag.) |
|
@field | A field in the structure. |
|
Example:
/*! @struct TableOrigin @discussion Locates lower-left corner of table in screen coordinates. @field x Point on horizontal axis. @field y Point on vertical axis */ struct TableOrigin { int x; int y; }
|
|
Fields |
@enum | The name of the enumeration. This is the enum's tag, if it has one. Otherwise, supply a name you want to have the constants grouped under in the documentation. |
|
@constant | A constant within the enumeration. |
|
Example:
/*! @enum Beverage Categories @discussion Categorizes beverages into groups of similar types. @constant kSoda Sweet, carbonated, non-alcoholic beverages. @constant kBeer Light, grain-based, alcoholic beverages. @constant kMilk Dairy beverages. @constant kWater Unflavored, non-sweet, non-caloric, non-alcoholic beverages. */ enum { kSoda = (1 << 6), kBeer = (1 << 7), kMilk = (1 << 8), kWater = (1 << 9) }
|
|
Fields |
@typedef | The name of the defined type. |
|
various | The tags that can appear after a "@typedef" tag depend on the definition of the new type. @field for typedef'd structs @constant for typedef'd enumerations @param for simple typedef'd function pointers @callback, @param, @result for typedef'd structs containing function pointers |
Example 1 - Typedef for a simple struct:
/*! @typedef TypedefdSimpleStruct @abstract Abstract for this API. @discussion Discussion that applies to the entire typedef'd simple struct. @field firstField Description of first field @field secondField Description of second field */ typedef struct _structTag { short firstField; unsigned long secondField } TypedefdSimpleStruct;
Example 2 - Typedef for an enumeration:
/*! @typedef TypedefdEnum @abstract Abstract for this API. @discussion Discussion that applies to the entire typedef'd enum. @constant kCFCompareLessThan Description of first constant. @constant kCFCompareEqualTo Description of second constant. @constant kCFCompareGreaterThan Description of third constant. */ typedef enum { kCFCompareLessThan = -1, kCFCompareEqualTo = 0, kCFCompareGreaterThan = 1 } TypedefdEnum;
Example 3 - Typedef for a simple function pointer:
/*! @typedef simpleCallback @abstract Abstract for this API. @discussion Discussion that applies to the entire callback. @param inFirstParameter Description of the callback's first parameter. @param outSecondParameter Description of the callback's second parameter. @result Returns what it can when it is possible to do so. */ typedef long (*simpleCallback)(short inFirstParameter, unsigned long long *outSecondParameter);
Example 4 - Typedef for a struct containing function pointers:
/*! @typedef TypedefdStructWithCallbacks @abstract Abstract for this API. @discussion Defines the basic interface for Command DescriptorBlock (CDB) commands. @field firstField Description of first field. @callback setPointers Specifies the location of the data buffer. The setPointers function has the following parameters: @param cmd A pointer to the CDB command interface. @param sgList A pointer to a scatter/gather list. @result An IOReturn structure which returns the return value in the structure returned. @field lastField Description of the struct's last field. */ typedef struct _someTag { short firstField; IOReturn (*setPointers)(void *cmd, IOVirtualRange *sgList); unsigned long lastField } TypedefdStructWithCallbacks;
Fields
@const
Name of the constant.
Example:
/*! @const kCFTypeArrayCallBacks @discussion Predefined CFArrayCallBacks structure containing a set of callbacks appropriate... */ const CFArrayCallBacks kCFTypeArrayCallBacks;
Fields
@defined
Name of the constant.
Example:
/*! @defined TRUE @discussion Defines the boolean true value. */ #define TRUE 1