Java tutorial
//package com.java2s; import javax.swing.*; import java.awt.event.InputEvent; public class Main { public static KeyStroke getAltKeyStroke(final int keyCode) { return KeyStroke.getKeyStroke(keyCode, InputEvent.ALT_DOWN_MASK); } public static KeyStroke getKeyStroke(final int keyCode) { return KeyStroke.getKeyStroke(keyCode, 0); } }