biojs-vis-pdbviewer
Version:
A BioJS 2.0 component to view protein structures
53 lines (52 loc) • 1.43 kB
JavaScript
Clazz.declarePackage ("JU");
Clazz.load (["JU.ZStream"], "JU.Inflater", ["JU.Inflate"], function () {
c$ = Clazz.declareType (JU, "Inflater", JU.ZStream);
Clazz.defineMethod (c$, "init",
function (w, nowrap) {
this.setAdler32 ();
if (w == 0) w = 15;
this.istate = new JU.Inflate (this);
this.istate.inflateInit (nowrap ? -w : w);
return this;
}, "~N,~B");
Clazz.overrideMethod (c$, "inflate",
function (f) {
if (this.istate == null) return -2;
var ret = this.istate.inflate (f);
return ret;
}, "~N");
Clazz.overrideMethod (c$, "end",
function () {
if (this.istate == null) return -2;
var ret = this.istate.inflateEnd ();
return ret;
});
Clazz.defineMethod (c$, "sync",
function () {
if (this.istate == null) return -2;
return this.istate.inflateSync ();
});
Clazz.defineMethod (c$, "syncPoint",
function () {
if (this.istate == null) return -2;
return this.istate.inflateSyncPoint ();
});
Clazz.defineMethod (c$, "setDictionary",
function (dictionary, dictLength) {
if (this.istate == null) return -2;
return this.istate.inflateSetDictionary (dictionary, dictLength);
}, "~A,~N");
Clazz.overrideMethod (c$, "finished",
function () {
return this.istate.mode == 12;
});
Clazz.defineMethod (c$, "reset",
function () {
this.avail_in = 0;
if (this.istate != null) this.istate.reset ();
});
Clazz.defineStatics (c$,
"MAX_WBITS", 15,
"DEF_WBITS", 15,
"$Z_STREAM_ERROR", -2);
});