(final String language)
| 2512 | |
| 2513 | //#if !(TinyMode || TinyModeExport || LightMode || LightModeExport) |
| 2514 | public final void setBookLanguage(final String language) { |
| 2515 | if (currentBook.setLanguage(language)) { |
| 2516 | /* |
| 2517 | * Reload the hyphenator |
| 2518 | */ |
| 2519 | loadHyphenator(language); |
| 2520 | |
| 2521 | /* |
| 2522 | * Reflow the chapter |
| 2523 | */ |
| 2524 | reflowChapter(); |
| 2525 | } |
| 2526 | } |
| 2527 | |
| 2528 | private void loadHyphenator(final String language) { |
| 2529 |
no test coverage detected