MCPcopy Create free account
hub / github.com/HumbleUI/JWM / isNavigationKey

Method isNavigationKey

shared/java/Key.java:152–154  ·  view source on GitHub ↗

Navigation keys are arrow keys and Page Down, Page Up, Home, End (including keypad keys)

()

Source from the content-addressed store, hash-verified

150 * (including keypad keys)
151 */
152 public boolean isNavigationKey() {
153 return (_mask & KeyType.NAVIGATION) != 0;
154 }
155
156 public boolean isArrowKey() {
157 return (_mask & KeyType.ARROW) != 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected