File size: 424 Bytes
233f6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | Clazz.declarePackage ("java.util.zip");
c$ = Clazz.decorateAsClass (function () {
this.$address = 0;
Clazz.instantialize (this, arguments);
}, java.util.zip, "ZStreamRef");
Clazz.makeConstructor (c$,
function (address) {
this.$address = address;
}, "~N");
Clazz.defineMethod (c$, "address",
function () {
return this.$address;
});
Clazz.defineMethod (c$, "clear",
function () {
this.$address = 0;
});
|