--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/uidesigner/com.nokia.sdt.component.symbian.test/data/scripts/test2_params.js Fri Apr 03 23:33:03 2009 +0100
@@ -0,0 +1,23 @@
+
+// this test gets everything through instance
+
+function Test() {
+}
+
+Test.prototype.getInstance = function() {
+ return instance;
+}
+
+Test.prototype.getProperties = function() {
+ return instance.properties;
+}
+
+Test.prototype.getNamePlusFoo = function() {
+// java.lang.System.out.println( instance.properties.size)
+ return instance.properties.name + "foo";
+}
+
+Test.prototype.getSizeFormatted = function() {
+ return instance.properties.size.x + "," + instance.properties.size.y;
+}
+