| Clazz.declarePackage ("JS"); | |
| c$ = Clazz.decorateAsClass (function () { | |
| this.processName = null; | |
| this.context = null; | |
| Clazz.instantialize (this, arguments); | |
| }, JS, "ScriptProcess"); | |
| Clazz.makeConstructor (c$, | |
| function (name, context) { | |
| this.processName = name; | |
| this.context = context; | |
| }, "~S,JS.ScriptContext"); | |