Here you can find the source of mapKeyStrokeAction(JComponent component, String actionMapKey, Action action, KeyStroke keyStroke)
public static void mapKeyStrokeAction(JComponent component, String actionMapKey, Action action, KeyStroke keyStroke)
//package com.java2s; //License from project: Apache License import javax.swing.Action; import javax.swing.JComponent; import javax.swing.KeyStroke; public class Main { public static void mapKeyStrokeAction(JComponent component, String actionMapKey, Action action, KeyStroke keyStroke) { component.getActionMap().put(actionMapKey, action); component.getInputMap().put(keyStroke, actionMapKey); }/*from www . j a va2 s .c om*/ }