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