(VirtualList virtualList)
| 93 | } |
| 94 | |
| 95 | public void show(VirtualList virtualList) { |
| 96 | KeyRepeatTimer.stop(); |
| 97 | if (virtualList == null) |
| 98 | virtualList = getList(); |
| 99 | list = virtualList; |
| 100 | Display.getDisplay(midlet).setCurrent(this); |
| 101 | repaint(); |
| 102 | commandState(); |
| 103 | } |
| 104 | |
| 105 | public VirtualList getList() { |
| 106 | return list == null ? homeList : list; |
nothing calls this directly
no test coverage detected