Moves one character forward. @param select selection flag
(final boolean select)
| 164 | * @param select selection flag |
| 165 | */ |
| 166 | void next(final boolean select) { |
| 167 | if(select && !isSelected()) startSelect(); |
| 168 | forward(select); |
| 169 | if(select) endSelection(); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Moves one character forward. |
no test coverage detected