Goes back one step in the navigation history, if possible. @return this navigation history, after going back one step @throws IOException in case of error
()
| 186 | * @throws IOException in case of error |
| 187 | */ |
| 188 | public History back() throws IOException { |
| 189 | if (index_ > 0) { |
| 190 | index_--; |
| 191 | goToUrlAtCurrentIndex(); |
| 192 | } |
| 193 | return this; |
| 194 | } |
| 195 | |
| 196 | /** |
| 197 | * Goes forward one step in the navigation history, if possible. |