uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/propwriter1_params.js
author Deepak Modgil <Deepak.Modgil@Nokia.com>
Fri, 03 Apr 2009 23:33:03 +0100
changeset 0 fb279309251b
permissions -rw-r--r--
DP tools release version Revision: 200912


function Test() {
}


Test.prototype.getName = function(inst) {
	return inst.properties["name"];
}

Test.prototype.setName = function(inst, str) {
	inst.properties["name"] = "_" + str;
}

Test.prototype.getSizeFormatted = function(props) {
	return props["size"].x + "," + props["size"].y;
}

Test.prototype.setSize = function(props, x,y) {
	props["size"]["x"] = x;
	props["size"]["y"] = y;
}