()
| 175 | } |
| 176 | } |
| 177 | public void pageRight(){ |
| 178 | if ( xCursor < ( (cursor<lines-1)?(xCnt-1):(xLastCnt-1) ) ) { |
| 179 | xCursor++; |
| 180 | setRotator(); |
| 181 | } else { |
| 182 | if (cursor==lines-1) return; |
| 183 | xCursor=0; |
| 184 | keyDwn(); |
| 185 | } |
| 186 | } |
| 187 | public void keyDwn(){ |
| 188 | super.keyDwn(); |
| 189 | if (cursor!=lines-1) |
no test coverage detected