return keyPressed(vkCode, 0);
}
public static EventRegistration keyReleased(int vkCode, int expectedModifiersEx, int expectedLocation)
{
return new GenericListenerRegistration(KeyListener.class).filter(keyFilter(KeyEvent.KEY_RELEASED, vkCode, expectedModifiersEx, expectedLocation));
}