@Override public void run() { HyperlinkDialog dlg = new HyperlinkDialog(LoaderWindow.getApp().getShell(), controller); dlg.setText(Labels.getString("HelpUIAction.dlgTitle")); // $NON-NLS-1$ dlg.setMessage(Labels.getString("HelpUIAction.dlgMsg")); // $NON-NLS-1$ dlg.setLinkText(Labels.getString("HelpUIAction.dlgLinkText")); // $NON-NLS-1$ dlg.setLinkURL(Labels.getString("HelpUIAction.dlgURL")); // $NON-NLS-1$ dlg.setBoldMessage(Labels.getString("HelpUIAction.msgHeader")); // $NON-NLS-1$ dlg.open(); }
public HelpUIAction(Controller controller) { super(Labels.getString("HelpUIAction.menuText"), null); // $NON-NLS-1$ setToolTipText(Labels.getString("HelpUIAction.tooltip")); // $NON-NLS-1$ this.controller = controller; }
public ExitUIAction() { super(Labels.getString("ExitUIAction.menuText")); // $NON-NLS-1$ setToolTipText(Labels.getString("ExitUIAction.tooltipText")); // $NON-NLS-1$ }