鉴于:
// @private
updateInactiveLabel: function(newInactiveLabel, oldInactiveLabel) {
if (newInactiveLabel != oldInactiveLabel) {
this.getComponent().element.dom.setAttribute('data-inactivelabel', newInactiveLabel);
}
},
以上是Ext.field.Toggle
的片段代码此方法是否会由扩展Toggle(MyToggle)的用户定义类继承?
我的意思是这个// @private
注释阻止了方法的继承吗?
答案 0 :(得分:5)
是的,私有方法将被继承,除非它们被覆盖。
@private
表示法用于文档目的。