Package com.googlecode.duplicatedetector.controller

Examples of com.googlecode.duplicatedetector.controller.AddFileActionListener


  private JMenuItem getAddMenuItem() {
    if (addMenuItem == null) {
      addMenuItem = new JMenuItem();
      addMenuItem.setText(_(ADD));
      addMenuItem.addActionListener(new AddFileActionListener(mainPanel
          .getFileListModel(), mainPanel.getFileChooser(), this));
    }
    return addMenuItem;
  }
View Full Code Here


  private JButton getAddButton() {
    if (addButton == null) {
      addButton = new JButton();
      addButton.setText(_(ADD));
      addButton.addActionListener(new AddFileActionListener(
          getFileListModel(), getFileChooser(), this));
    }
    return addButton;
  }
View Full Code Here

TOP

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

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.