File size: 323 Bytes
233f6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 | 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");
|