public final class KeyPressInfo extends Object
Examples:
Specify that 'CTRL' + 'C' should be pressed:
// import static org.fest.swing.fixture.KeyPressInfo.*; KeyPressInfo i = key(VK_C).modifiers(CTRL_MASK);
Specify that 'SHIFT' + 'R' should be pressed:
// import static org.fest.swing.fixture.KeyPressInfo.*; KeyPressInfo i = key(VK_R).modifiers(SHIFT_MASK);
For platform-safe mask pressing (e.g. 'Control' in Windows or 'Command' in MacOS) use
.
Platform.controlOrCommandMask()
| Modifier and Type | Method and Description |
|---|---|
int |
keyCode()
Returns the code of the key to press.
|
static KeyPressInfo |
keyCode(int keyCode)
Specifies the code of the key to press, without any modifiers (e.g.
|
int[] |
modifiers()
Returns the modifiers to use when pressing
. |
KeyPressInfo |
modifiers(int... newModifiers)
Specifies the modifiers to use when pressing
(e.g. |
public static KeyPressInfo keyCode(int keyCode)
KeyEvent.VK_C.)keyCode - the code of the key to press.KeyPressInfo.public int keyCode()
public int[] modifiers()
the specified key.public KeyPressInfo modifiers(int... newModifiers)
the specified key (e.g.
Event.CTRL_MASK.)
For platform-safe mask pressing (e.g. 'Control' in Windows or 'Command' in MacOS) use
.
Platform.controlOrCommandMask()
newModifiers - the new modifiers to use.NullPointerException - if newModifiers is null.Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.