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