@qooxdoo/framework
Version:
The JS Framework for Coders
20 lines (15 loc) • 342 B
JavaScript
qx.Class.define("qx.test.log.fixture.ClassC2",
{
extend : qx.test.log.fixture.ClassB2,
members :
{
_applyOldProperty: function () {
this.base(arguments);
this._callCountApplyOldProperty++;
},
_applyNewProperty: function () {
this.base(arguments);
this._callCountApplyNewProperty++;
}
}
});