01: package java.io;
02:
03: public class StreamTokenizer {
04: public static final int TT_EOF = -1;
05: public static final int TT_EOL = '\n';
06: public static final int TT_NUMBER = -2;
07: public static final int TT_WORD = -3;
08: public int ttype;
09: public String sval;
10: public double nval;
11:
12: public StreamTokenizer(InputStream is) {
13: }
14:
15: public StreamTokenizer(Reader r) {
16: }
17:
18: public void commentChar(int ch) {
19: }
20:
21: public void eolIsSignificant(boolean flag) {
22: }
23:
24: public int lineno() {
25: }
26:
27: public void lowerCaseMode(boolean flag) {
28: }
29:
30: private boolean isWhitespace(int ch) {
31: }
32:
33: private boolean isAlphabetic(int ch) {
34: }
35:
36: private boolean isNumeric(int ch) {
37: }
38:
39: private boolean isQuote(int ch) {
40: }
41:
42: private boolean isComment(int ch) {
43: }
44:
45: public int nextToken() throws IOException {
46: }
47:
48: private void resetChar(int ch) {
49: }
50:
51: public void ordinaryChar(int ch) {
52: }
53:
54: public void ordinaryChars(int low, int hi) {
55: }
56:
57: public void parseNumbers() {
58: }
59:
60: public void pushBack() {
61: }
62:
63: public void quoteChar(int ch) {
64: }
65:
66: public void resetSyntax() {
67: }
68:
69: public void slashSlashComments(boolean flag) {
70: }
71:
72: public void slashStarComments(boolean flag) {
73: }
74:
75: public String toString() {
76: }
77:
78: public void whitespaceChars(int low, int hi) {
79: }
80:
81: public void wordChars(int low, int hi) {
82: }
83: }
|