Lines Matching refs:inputMap
207 final InputMap inputMap = getInputMap();
208 inputMap.put(KeyStroke.getKeyStroke("DOWN"), highlightNextAction);
209 inputMap.put(KeyStroke.getKeyStroke("KP_DOWN"), highlightNextAction);
210 inputMap.put(KeyStroke.getKeyStroke("UP"), highlightPreviousAction);
211 inputMap.put(KeyStroke.getKeyStroke("KP_UP"), highlightPreviousAction);
213 inputMap.put(KeyStroke.getKeyStroke("HOME"), highlightFirstAction);
214 inputMap.put(KeyStroke.getKeyStroke("END"), highlightLastAction);
215 inputMap.put(KeyStroke.getKeyStroke("PAGE_UP"), highlightPageUpAction);
216 inputMap.put(KeyStroke.getKeyStroke("PAGE_DOWN"), highlightPageDownAction);
219 inputMap.put(KeyStroke.getKeyStroke("ENTER"), new AbstractAction() {