You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This tag is auto-detected when class comment is right above Ext.define which contains alternateClassName:. The following code is equivalent of the above one:
/** * A simple panel class. */Ext.define("Ext.panel.Panel",{alternateClassName: ["Ext.Panel","XPanel"]});
Note: when using @alternateClassName tag explicitly, it will override any alternateClassName: properties auto-detected from source code. This means you can't just use one @alternateClassName to document one additional alternate name to those detected from source, instead you have to document all your alternate names with @alternateClassName tags.
If you want to avoid the auto-detection and have a class with no alternate class names at all, use the @ignore tag: