(final int number)
| 509 | } |
| 510 | |
| 511 | public final Chapter getChapter(final int number) { |
| 512 | |
| 513 | if (number < 0) { |
| 514 | return chapters[0]; |
| 515 | } |
| 516 | |
| 517 | if (number > chapters.length - 1) { |
| 518 | return chapters[chapters.length - 1]; |
| 519 | } |
| 520 | |
| 521 | return chapters[number]; |
| 522 | } |
| 523 | |
| 524 | public final void fillBookInfo(Form f) { |
| 525 |
no outgoing calls
no test coverage detected