01: package java.io;
02:
03: public class ByteArrayInputStream extends InputStream {
04: protected byte[] buf;
05: protected int pos;
06: protected int mark;
07: protected int count;
08:
09: public ByteArrayInputStream(byte[] buffer) {
10: }
11:
12: public ByteArrayInputStream(byte[] buffer, int offset, int length) {
13: }
14:
15: public synchronized int available() {
16: }
17:
18: public synchronized void mark(int readLimit) {
19: }
20:
21: public boolean markSupported() {
22: }
23:
24: public synchronized int read() {
25: }
26:
27: public synchronized int read(byte[] buffer, int offset, int length) {
28: }
29:
30: public synchronized void reset() {
31: }
32:
33: public synchronized long skip(long num) {
34: }
35: }
|