01: package java.io;
02:
03: public class LineNumberInputStream extends FilterInputStream {
04: public LineNumberInputStream(InputStream in) {
05: }
06:
07: public int available() throws IOException {
08: }
09:
10: public int getLineNumber() {
11: }
12:
13: public void mark(int readlimit) {
14: }
15:
16: public int read() throws IOException {
17: }
18:
19: public int read(byte[] b, int off, int len) throws IOException {
20: }
21:
22: public void reset() throws IOException {
23: }
24:
25: public void setLineNumber(int lineNumber) {
26: }
27:
28: public long skip(long n) throws IOException {
29: }
30: }
|