File size: 1,351 Bytes
233f6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | Clazz.load (["java.io.Closeable"], "java.io.Reader", ["java.io.IOException", "java.lang.IllegalArgumentException", "$.NullPointerException"], function () {
c$ = Clazz.decorateAsClass (function () {
this.lock = null;
this.skipBuffer = null;
Clazz.instantialize (this, arguments);
}, java.io, "Reader", null, java.io.Closeable);
Clazz.makeConstructor (c$,
function (lock) {
if (lock == null) {
throw new NullPointerException ();
}this.lock = lock;
}, "~O");
Clazz.defineMethod (c$, "skip",
function (n) {
if (n < 0) throw new IllegalArgumentException ("skip value is negative");
var nn = Math.min (n, 8192);
{
if ((this.skipBuffer == null) || (this.skipBuffer.length < nn)) this.skipBuffer = Clazz.newCharArray (nn, '\0');
var r = n;
while (r > 0) {
var nc = this.read (this.skipBuffer, 0, Math.min (r, nn));
if (nc == -1) break;
r -= nc;
}
return n - r;
}}, "~N");
Clazz.defineMethod (c$, "ready",
function () {
return false;
});
Clazz.defineMethod (c$, "markSupported",
function () {
return false;
});
Clazz.defineMethod (c$, "mark",
function (readAheadLimit) {
throw new java.io.IOException ("mark() not supported");
}, "~N");
Clazz.defineMethod (c$, "reset",
function () {
throw new java.io.IOException ("reset() not supported");
});
Clazz.defineStatics (c$,
"MAX_SKIP_BUFFE_SIZE", 8192);
});
|