01: package java.io;
02:
03: public class LineNumberReader extends BufferedReader {
04: public LineNumberReader(Reader in) {
05: }
06:
07: public LineNumberReader(Reader in, int size) {
08: }
09:
10: public int getLineNumber() {
11: }
12:
13: public void setLineNumber(int lineNumber) {
14: }
15:
16: public void mark(int readLimit) throws IOException {
17: }
18:
19: public void reset() throws IOException {
20: }
21:
22: private int fill() throws IOException {
23: }
24:
25: public int read() throws IOException {
26: }
27:
28: public int read(char[] buf, int offset, int count)
29: throws IOException {
30: }
31:
32: private void skipRedundantLF() throws IOException {
33: }
34:
35: public String readLine() throws IOException {
36: }
37:
38: public long skip(long count) throws IOException {
39: }
40: }
|