cascade / static /j2s /JS /ScriptProcess.js
bobbypaton
Initial CASCADE HF Space deployment
233f6d4
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");