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