biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
16 lines (15 loc) • 386 B
JavaScript
Clazz.declarePackage ("javajs.swing");
c$ = Clazz.decorateAsClass (function () {
this.top = 0;
this.left = 0;
this.bottom = 0;
this.right = 0;
Clazz.instantialize (this, arguments);
}, javajs.swing, "Insets");
Clazz.makeConstructor (c$,
function (top, left, bottom, right) {
this.top = top;
this.left = left;
this.bottom = bottom;
this.right = right;
}, "~N,~N,~N,~N");