Ejemplo n.º 1
0
 @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();
 }
Ejemplo n.º 2
0
  public HelpUIAction(Controller controller) {
    super(Labels.getString("HelpUIAction.menuText"), null); // $NON-NLS-1$
    setToolTipText(Labels.getString("HelpUIAction.tooltip")); // $NON-NLS-1$

    this.controller = controller;
  }
Ejemplo n.º 3
0
  public ExitUIAction() {

    super(Labels.getString("ExitUIAction.menuText")); // $NON-NLS-1$
    setToolTipText(Labels.getString("ExitUIAction.tooltipText")); // $NON-NLS-1$
  }