Package com.googlecode.duplicatedetector.controller

Examples of com.googlecode.duplicatedetector.controller.RemoveFileActionListener


  private JMenuItem getRemoveMenuItem() {
    if (removeMenuItem == null) {
      removeMenuItem = new JMenuItem();
      removeMenuItem.setText(_(REMOVE));
      removeMenuItem.addActionListener(new RemoveFileActionListener(
          mainPanel.getFileListModel(), mainPanel.getFileList()));
    }
    return removeMenuItem;
  }
View Full Code Here


  private JButton getRemoveButton() {
    if (removeButton == null) {
      removeButton = new JButton();
      removeButton.setText(_(REMOVE));
      removeButton.addActionListener(new RemoveFileActionListener(
          getFileListModel(), getFileList()));
    }
    return removeButton;
  }
View Full Code Here

TOP

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

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.