MCPcopy Create free account
hub / github.com/TigerVNC/tigervnc / getMenuKeyValueStr

Method getMenuKeyValueStr

java/com/tigervnc/vncviewer/MenuKey.java:85–93  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

getMenuKeySymbolCountMethod · 0.95

Tested by

no test coverage detected