Package com.googlecode.duplicatedetector.controller

Examples of com.googlecode.duplicatedetector.controller.ShowHelpActionListener


  private JMenuItem getContentsMenuItem() {
    if (contentsMenuItem == null) {
      contentsMenuItem = new JMenuItem();
      contentsMenuItem.setText(_(CONTENTS) + "...");
      contentsMenuItem.setAccelerator(KeyStroke.getKeyStroke("F1"));
      contentsMenuItem.addActionListener(new ShowHelpActionListener(
          _(CONTENTS), Messages.getHelp(CONTENTS_FILE), this));
    }
    return contentsMenuItem;
  }
View Full Code Here


  private JMenuItem getLicenseMenuItem() {
    if (licenseMenuItem == null) {
      licenseMenuItem = new JMenuItem();
      licenseMenuItem.setText(_(LICENSE) + "...");
      licenseMenuItem.addActionListener(new ShowHelpActionListener(
          _(LICENSE), Messages.getHelp(LICENSE_FILE), this));
    }
    return licenseMenuItem;
  }
View Full Code Here

  private JMenuItem getAboutMenuItem() {
    if (aboutMenuItem == null) {
      aboutMenuItem = new JMenuItem();
      aboutMenuItem.setText(_(ABOUT) + "...");
      aboutMenuItem.addActionListener(new ShowHelpActionListener(
          _(ABOUT), Messages.getHelp(ABOUT_FILE), this));
    }
    return aboutMenuItem;
  }
View Full Code Here

TOP

Related Classes of com.googlecode.duplicatedetector.controller.ShowHelpActionListener

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.