(int index)
| 71 | } |
| 72 | |
| 73 | public VirtualElement getItemRef(int index) { |
| 74 | if (index >= getItemCount()) { |
| 75 | return null; |
| 76 | } |
| 77 | return (VirtualElement) itemsList.elementAt(index); |
| 78 | } |
| 79 | |
| 80 | public void menuAction(MenuCommand command, VirtualList displayable) { |
| 81 | if (command == cmdCancel) { |
nothing calls this directly
no test coverage detected