01: package java.io;
02:
03: import java.util.Enumeration;
04:
05: public class SequenceInputStream extends InputStream {
06: public SequenceInputStream(Enumeration e) {
07: }
08:
09: public SequenceInputStream(InputStream s1, InputStream s2) {
10: }
11:
12: public int available() throws IOException {
13: }
14:
15: public void close() throws IOException {
16: }
17:
18: public int read() throws IOException {
19: }
20:
21: public int read(byte[] b, int off, int len) throws IOException {
22: }
23:
24: private InputStream getNextStream() {
25: }
26: }
|