Searched defs:anAction (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java2025 * <code>aKeyStroke</code> to the <code>Action</code> <code>anAction</code>
2029 * component.getActionMap().put(aCommmand, anAction);
2036 * <code>anAction</code> will be invoked if a key event matching
2077 * <code>anAction</code> will replace the action.
2079 * @param anAction the <code>Action</code> to be registered
2085 public void registerKeyboardAction(ActionListener anAction,String aCommand,KeyStroke aKeyStroke,int aCondition) { argument
2091 ActionStandin action = new ActionStandin(anAction, aCommand);
2211 public void registerKeyboardAction(ActionListener anAction,KeyStroke aKeyStroke,int aCondition) { argument
2212 registerKeyboardAction(anAction,null,aKeyStroke,aCondition);

Completed in 46 milliseconds