File size: 434 Bytes
233f6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 | Clazz.declarePackage ("JSV.common");
Clazz.load (["JSV.common.Measurement"], "JSV.common.Integral", null, function () {
c$ = Clazz.declareType (JSV.common, "Integral", JSV.common.Measurement);
Clazz.defineMethod (c$, "setInt",
function (x1, y1, spec, value, x2, y2) {
this.setA (x1, y1, spec, "", false, false, 0, 6);
this.setPt2 (x2, y2);
this.setValue (value);
return this;
}, "~N,~N,JSV.common.Spectrum,~N,~N,~N");
});
|