We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Synopsis:
@uses ClassName
Defines classes that the documented class uses.
Example:
/** * @class Ext.panel.Table * Basis of both TreePanel and GridPanel. * @uses Ext.selection.RowModel * @uses Ext.grid.header.Container */
This tag is auto-detected when class comment is right above Ext.define which contains uses:. The following code is equivalent of the above one:
Ext.define
uses:
/** * Basis of both TreePanel and GridPanel. */ Ext.define("Ext.panel.Table", { uses: [ "Ext.selection.RowModel", "Ext.grid.header.Container" ] });
Otherwise the auto-detection behaves just like with @alternateClassName tag.