()
| 227 | } |
| 228 | |
| 229 | private boolean incrementPage() { |
| 230 | int index = currentPageIndex + 1; |
| 231 | if (index == pages.size()) { |
| 232 | return false; |
| 233 | } |
| 234 | currentPageIndex = index; |
| 235 | setPages(); |
| 236 | return true; |
| 237 | } |
| 238 | |
| 239 | public final void goToFirstPage() { |
| 240 | currentPageIndex = 1; |
no test coverage detected