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
Documents class member as abstract. The implementation for an abstract member must be provided in subclasses.
Example:
/** * Base class for triangles, rectangles and other shapes. */Ext.define("Shape",{/** * Calculates the area of the shape. * @return {Number} * @abstract */area: function(){alert("area() not implemented");}});