()
| 684 | } |
| 685 | |
| 686 | public void moveCursorEnd(){ |
| 687 | stickyWindow=true; |
| 688 | int count=getItemCount(); |
| 689 | if (cursor>=0) cursor=(count==0)?0:count-1; |
| 690 | redraw(); |
| 691 | setRotator(); |
| 692 | |
| 693 | } |
| 694 | |
| 695 | public void moveCursorTo(int index){ |
| 696 | int count = getItemCount(); |
no test coverage detected