()
| 219 | } |
| 220 | |
| 221 | public final boolean goToNextPage() { |
| 222 | if (inverted) { |
| 223 | return decrementPage(); |
| 224 | } else { |
| 225 | return incrementPage(); |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | private boolean incrementPage() { |
| 230 | int index = currentPageIndex + 1; |
no test coverage detected