uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/derived.js
author stechong
Mon, 08 Jun 2009 15:07:19 -0500
changeset 215 035fd2d44781
parent 0 fb279309251b
permissions -rw-r--r--
Updated getErrorMessage() methods for accessing error messages from various INF and MMP editor pages.

dcounter = 10
function draw(value)  {
	baseRet = Base.prototype.draw(value)
	old = dcounter
	dcounter += 10
	return baseRet + old * value;
	
}
function Derived() {
	Base.apply(this)
}
Derived.prototype = new Base;

Derived.prototype.draw = draw