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