()
| 143 | public void captionPressed() {} |
| 144 | |
| 145 | public String selectCommand() { |
| 146 | if (cf.swapMenu) { |
| 147 | MenuCommand commandOk = findCommand(MenuCommand.OK); |
| 148 | return commandOk == null ? SR.MS_OK : commandOk.name; |
| 149 | } else { |
| 150 | return canBack ? SR.MS_BACK : ""; |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | public String menuCommand() { |
| 155 | int size = menuCommands.size(); |
no test coverage detected