(STWriter out)
| 429 | } |
| 430 | |
| 431 | public int write(STWriter out) throws IOException { |
| 432 | Interpreter interp = new Interpreter(groupThatCreatedThisInstance, impl.nativeGroup.errMgr, false); |
| 433 | InstanceScope scope = new InstanceScope(null, this); |
| 434 | return interp.exec(out, scope); |
| 435 | } |
| 436 | |
| 437 | public int write(STWriter out, Locale locale) { |
| 438 | Interpreter interp = new Interpreter(groupThatCreatedThisInstance, locale, impl.nativeGroup.errMgr, false); |
no test coverage detected