(String layout)
| 42 | } |
| 43 | |
| 44 | public void init(String layout) { |
| 45 | tokenPos = 0; |
| 46 | tokenLength = 0; |
| 47 | index = 0; |
| 48 | data = (layout != null) ? layout : ""; |
| 49 | length = (layout != null) ? layout.length() : 0; |
| 50 | } |
| 51 | |
| 52 | public boolean hasNext() { |
| 53 | return !isEof(); |
no outgoing calls
no test coverage detected