
org.sikuli.script.KeyModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sikulixapi Show documentation
Show all versions of sikulixapi Show documentation
... for visual testing and automation
/*
* Copyright (c) 2010-2016, Sikuli.org, sikulix.com
* Released under the MIT License.
*
*/
package org.sikuli.script;
import java.awt.event.InputEvent;
/**
* complementing class Key with the constants for the modifier keys
* only still there for backward compatibility (is already duplicated in Key)
*/
public class KeyModifier {
public static final int CTRL = InputEvent.CTRL_MASK;
public static final int SHIFT = InputEvent.SHIFT_MASK;
public static final int ALT = InputEvent.ALT_MASK;
public static final int ALTGR = InputEvent.ALT_GRAPH_MASK;
public static final int META = InputEvent.META_MASK;
public static final int CMD = InputEvent.META_MASK;
public static final int WIN = InputEvent.META_MASK;
@Deprecated
public static final int KEY_CTRL = InputEvent.CTRL_MASK;
@Deprecated
public static final int KEY_SHIFT = InputEvent.SHIFT_MASK;
@Deprecated
public static final int KEY_ALT = InputEvent.ALT_MASK;
@Deprecated
public static final int KEY_META = InputEvent.META_MASK;
@Deprecated
public static final int KEY_CMD = InputEvent.META_MASK;
@Deprecated
public static final int KEY_WIN = InputEvent.META_MASK;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy