()
| 250 | } |
| 251 | |
| 252 | private Record |
| 253 | nextGenerated() throws IOException { |
| 254 | try { |
| 255 | return generator.nextRecord(); |
| 256 | } |
| 257 | catch (Tokenizer.TokenizerException e) { |
| 258 | throw st.exception("Parsing $GENERATE: " + e.getBaseMessage()); |
| 259 | } |
| 260 | catch (TextParseException e) { |
| 261 | throw st.exception("Parsing $GENERATE: " + e.getMessage()); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | /** |
| 266 | * Returns the next record in the master file. This will process any |
no test coverage detected