01: package com.quadcap.io;
02:
03: /*
04: * Copyright 1997 by Stan Bailes and quadcap Software.
05: *
06: **/
07:
08: import java.io.ByteArrayInputStream;
09:
10: /**
11: *
12: *
13: * @author Stan Bailes
14: */
15: public class MutableByteArrayInputStream extends ByteArrayInputStream {
16: public MutableByteArrayInputStream() {
17: super (new byte[0]);
18: }
19:
20: public MutableByteArrayInputStream(byte[] buf) {
21: super (buf);
22: }
23:
24: public void reset(byte[] buf) {
25: this .buf = buf;
26: this .pos = 0;
27: this.count = buf.length;
28: }
29: }
|