(MenuKeySymbol sym)
| 76 | } |
| 77 | |
| 78 | public static String getKeyText(MenuKeySymbol sym) { |
| 79 | if (VncViewer.os.startsWith("mac os x")) |
| 80 | return sym.name.replace("_", " "); |
| 81 | else |
| 82 | return KeyEvent.getKeyText(sym.javacode); |
| 83 | } |
| 84 | |
| 85 | public static String getMenuKeyValueStr() { |
| 86 | String s = ""; |
no outgoing calls
no test coverage detected