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 requires.
Example:
/** * @class Ext.panel.Table * Basis of both TreePanel and GridPanel. * @requires Ext.selection.RowModel * @requires Ext.grid.header.Container */
This tag is auto-detected when class comment is right above Ext.define which contains requires:. The following code is equivalent of the above one:
Ext.define
requires:
/** * Basis of both TreePanel and GridPanel. */ Ext.define("Ext.panel.Table", { requires: [ "Ext.selection.RowModel", "Ext.grid.header.Container" ] });
Otherwise the auto-detection behaves just like with @alternateClassName tag.