(MenuCommand c, VirtualList d)
| 83 | private ExtendedStatus getSel() { return (ExtendedStatus)getFocusedObject(); } |
| 84 | |
| 85 | public void menuAction(MenuCommand c, VirtualList d) { |
| 86 | if (c==cmdEdit) { |
| 87 | new StatusForm(getSel()); |
| 88 | } |
| 89 | |
| 90 | if (c==cmdDef) { |
| 91 | cf.loginstatus=cursor; |
| 92 | cf.saveToStorage(); |
| 93 | redraw(); |
| 94 | } |
| 95 | |
| 96 | super.menuAction(c, d); |
| 97 | } |
| 98 | |
| 99 | public void cmdOk() { |
| 100 | eventOk(); |
nothing calls this directly
no test coverage detected