Method getInputMap()
Return type:
javax.swing.InputMap
Member of:
javax.swing.JComponent
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
getInputMap().remove(stroke);
2
InputMap map = resultList.getInputMap();
3
getInputMap().put((KeyStroke) a.getValue(Action.ACCELERATOR_KEY), DELETE_ACTION);
4
getInputMap().put((KeyStroke) a.getValue(Action.ACCELERATOR_KEY), DELETE_ACTION);
5
component.getInputMap().put(KeyStroke.getKeyStroke(KeyEvent.VK_X, keyMask), "CUT");
6
InputMap im = tree.getInputMap();
7
InputMap map = m_tree.getInputMap();
8
InputMap im = comp.getInputMap();
9
InputMap im = inputArea.getInputMap();
10
getInputMap().put(bsKeyStroke, cutAction);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.