biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
12 lines (11 loc) • 323 B
JavaScript
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");