(function() {
var old = sap.cus.crm.lib.reuse.controls.Note.prototype.getProperty;
sap.cus.crm.lib.reuse.controls.Note.prototype._jerrycount = 1;
sap.cus.crm.lib.reuse.controls.Note.prototype.getProperty = function(name) {
console.time("getProperty Benchmark");
var result = old.call(this,name);
sap.cus.crm.lib.reuse.controls.Note.prototype._jerrycount++;
console.log("result: " + result + "(total count: " +
sap.cus.crm.lib.reuse.controls.Note.prototype._jerrycount + " )");
console.timeEnd("getProperty Benchmark");
return result;
};
})();