1 | public class AddressbookImportAction extends AbstractColumbaAction {↵ | | 1 | public class ShowHelpAction extends AbstractColumbaAction {↵
|
2 | public AddressbookImportAction(IFrameMediator frameController) {↵ | | 2 | public ShowHelpAction(IFrameMediator frame↵
|
3 | ↵ | | 3 | Mediator) {↵
|
4 | super(frameController, Addressbook↵ | | 4 | super(frameMediator,↵
|
5 | ResourceLoader.getString("menu",↵ | | 5 | GlobalResourceLoader.getString(↵
|
6 | "mainframe", "menu_utilities_addressbook"));↵ | | |
|
|
7 | // tooltip text↵ | | |
|
8 | putValue(SHORT_DESCRIPTION, AddressbookResourceLoader.getString("menu",↵ | | |
|
9 | "mainframe", "menu_utilities_addressbook").replaceAll("&", ""));↵ | | |
|
10 | }↵ | | |
|
|
11 | /*↵ | | |
|
12 | ↵ | | 6 | null, null, "menu_help_help"));↵
|
|
| | | 7 | // small icon for menu↵
|
| | | 8 | putValue(SMALL_ICON, ImageLoader.getSmallIcon("help-browser.png"));↵
|
| | | 9 | }↵
|
|
13 | * (non-Javadoc)↵ | | 10 | /* (non-Javadoc)↵
|
14 | * ↵ | | |
|
15 | * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)↵ | | 11 | * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent)↵
|
16 | */↵ | | |
|
17 | ↵ | | 12 | */↵
|
18 | public void actionPerformed(ActionEvent evt) {↵ | | 13 | public void actionPerformed(ActionEvent evt) {↵
|
19 | new ImportWizardLauncher().launchWizard() | | 14 | HelpManager.getInstance().openHelpFrame()
|