1 | private class ChangeAllAction extends AbstractAction {↵ | | 1 | private class IgnoreAllAction extends AbstractAction {↵
|
|
2 | private ChangeAllAction() {↵ | | 2 | private IgnoreAllAction() {↵
|
|
3 | super("Change All");↵ | | 3 | super("Ignore All");↵
|
|
4 | putValue(MNEMONIC_KEY, new Integer(KeyEvent.VK_L↵ | | 4 | // putValue( MNEMONIC_KEY, new Integer(KeyEvent.VK_G) );↵
|
|
| | | 5 | // putValue( ACCELERATOR_KEY, new Integer(KeyEvent.VK_G) );↵
|
|
5 | ));↵ | | 6 | putValue(MNEMONIC_KEY, new Integer(KeyEvent.VK_G));↵
|
|
6 | putValue(ACCELERATOR_KEY, new Integer(KeyEvent.VK_L));↵ | | 7 | putValue(ACCELERATOR_KEY, new Integer(KeyEvent.VK_G));↵
|
|
7 | }↵ | | 8 | }↵
|
|
8 | public void actionPerformed(ActionEvent event) {↵ | | 9 | public void actionPerformed(ActionEvent event) {↵
|
|
9 | _userAction = CHANGE_ALL;↵ | | 10 | _userAction = IGNORE_ALL;↵
|
|
10 | dispose(); | | 11 | dispose();
|