uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/sgderived.js
author dadubrow
Tue, 27 Apr 2010 13:17:04 -0500
branchRCL_2_4
changeset 1305 68114c404585
parent 0 fb279309251b
permissions -rw-r--r--
bug 11181


function Derived() {
	Base.apply(this)
}

Derived.prototype = new Base()

Derived.prototype.act = function() {
	return "Derived-Act-"+form + "/" + this.shared()
}