Skip to content
nene edited this page Mar 21, 2012 · 1 revision

Synopsis:

@member ClassName

Documents the class where member belongs to.

Usually member doc-comments follow class doc-comment in which case the membership is auto-detected, but when that's not the case the @member tag comes in handy to explicitly say where a member belongs. See @class documentation for more details and examples.

Example:

/**
 * @member Ext.Window
 * Makes the window visible.
 */
function show() {
}
Clone this wiki locally