Returns true if the system's shortcut key was pressed. @param e input event @return result of check
(final InputEvent e)
| 167 | * @return result of check |
| 168 | */ |
| 169 | public static boolean sc(final InputEvent e) { |
| 170 | return (META & e.getModifiersEx()) == META; |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Returns true if the pressed key includes a control key. |
no outgoing calls
no test coverage detected