We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Synopsis:
@protected
Documents the visibility of a member as protected. Protected members may only be used from within the class itself and its subclasses.
Example:
Ext.define("Ext.Base", { /** * Calls a parent method of the current method. * @protected */ callParent: function() { } });
See also @private for documenting members that may also be accessed from within one class.