()
| 83 | } |
| 84 | |
| 85 | public static String getMenuKeyValueStr() { |
| 86 | String s = ""; |
| 87 | for (int i = 0; i < getMenuKeySymbolCount(); i++) { |
| 88 | s += menuSymbols[i].name; |
| 89 | if (i < getMenuKeySymbolCount() - 1) |
| 90 | s += ", "; |
| 91 | } |
| 92 | return s; |
| 93 | } |
| 94 | |
| 95 | static int getMenuKeyJavaCode() { |
| 96 | int menuKeyCode = VK_F8; |
nothing calls this directly
no test coverage detected