()
| 62 | } |
| 63 | |
| 64 | public boolean hasMoreTokens() { |
| 65 | for (int i = position; i < in.length(); ++i) { |
| 66 | if (isDelimiter(in.charAt(i))) { |
| 67 | if (includeDelimiters) { |
| 68 | return true; |
| 69 | } |
| 70 | } else { |
| 71 | position = i; |
| 72 | return true; |
| 73 | } |
| 74 | } |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | public String nextToken() { |
| 79 | for (int i = position; i < in.length(); ++i) { |
no test coverage detected