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
In class context it means that the class shouldn't be instantiated as not all its members are implemented and without them the class is dysfunctional. The implementation must be provided by a subclass.
In member context it means that the member is not implemented in this class. An abstract member is usually part of abstract class.
Example:
/** * Shows the component * @abstract */show: function(){alert("not implemented");},