()
| 82 | } |
| 83 | |
| 84 | public void commandState() { |
| 85 | menuCommands.removeAllElements(); |
| 86 | //#ifdef CLIPBOARD |
| 87 | addMenuCommand(cmdCopy); |
| 88 | if (!ClipBoardIO.getInstance().isEmpty()) { |
| 89 | addMenuCommand(cmdCopyPlus); |
| 90 | } |
| 91 | |
| 92 | //#endif |
| 93 | addMenuCommand(cmdClear); |
| 94 | } |
| 95 | |
| 96 | public void menuAction(MenuCommand command, VirtualList displayable) { |
| 97 | //#ifdef CLIPBOARD |
nothing calls this directly
no test coverage detected