1 | void actionPerformed(ActionEvent evt) {↵ | | 1 | void actionPerformed(ActionEvent evt) {↵
|
2 | IMailFolderCommandReference r = ((MailFrameMediator) getFrameMediator())↵ | | 2 | IMailFolderCommandReference r = ((MailFrameMediator) getFrameMediator())↵
|
3 | .getTableSelection();↵ | | 3 | .getTableSelection();↵
|
4 | CommandProcessor.getInstance().addOp(new ReplyToAll↵ | | 4 | CommandProcessor.getInstance().addOp(↵
|
5 | Command(r));↵ | | 5 | new AddAllSendersToAddressbookCommand(r));↵
|
6 | }↵ | | |
|
|
7 | /↵ | | 6 | }↵
|
|
| | | 7 | /*↵
|
8 | * (non-Javadoc)↵ | | 8 | * (non-Javadoc)↵
|
9 | ↵ | | 9 | * ↵
|
10 | * @see org.columba.core.gui.util.ISelectionListener#selectionChanged(org.columba.core.gui.util.SelectionChangedEvent)↵ | | 10 | * @see org.columba.core.gui.util.ISelectionListener#selectionChanged(org.columba.core.gui.util.SelectionChangedEvent)↵
|
11 | */↵ | | |
|
12 | ↵ | | 11 | */↵
|
13 | public void selectionChanged(SelectionChangedEvent e) {↵ | | 12 | public void selectionChanged(SelectionChangedEvent e) {↵
|
14 | setEnabled(((TableSelectionChangedEvent) e).getUids().length > 0);↵ | | 13 | setEnabled(((TableSelectionChangedEvent) e).getUids().length > 0);↵
|
15 | } | | 14 | }
|