()
| 943 | } |
| 944 | |
| 945 | public void keyDwn() { |
| 946 | if (getItemCount()==0) |
| 947 | return; |
| 948 | if (cursor==(getItemCount()-1)) { |
| 949 | if (wrapping) { |
| 950 | moveCursorHome(); |
| 951 | } else { |
| 952 | itemPageDown(); |
| 953 | } |
| 954 | setRotator(); |
| 955 | return; |
| 956 | } |
| 957 | if (itemPageDown()) { |
| 958 | return; |
| 959 | } |
| 960 | stickyWindow=true; |
| 961 | if (getItemRef(cursor+1).isSelectable()) { |
| 962 | cursor++; |
| 963 | } else { |
| 964 | cursor=getNextSelectableRef(cursor); |
| 965 | } |
| 966 | setRotator(); |
| 967 | } |
| 968 | |
| 969 | public int getPrevSelectableRef(int curRef) { |
| 970 | if (getItemCount() == 0) { |
no test coverage detected