Package org.eobjects.datacleaner.actions

Source Code of org.eobjects.datacleaner.actions.AddAnalyzerActionListener

/**
* eobjects.org DataCleaner
* Copyright (C) 2010 eobjects.org
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA  02110-1301  USA
*/
package org.eobjects.datacleaner.actions;

import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Collection;

import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;

import org.eobjects.analyzer.beans.api.ExploringAnalyzer;
import org.eobjects.analyzer.beans.api.RowProcessingAnalyzer;
import org.eobjects.analyzer.configuration.AnalyzerBeansConfiguration;
import org.eobjects.analyzer.descriptors.AnalyzerBeanDescriptor;
import org.eobjects.analyzer.job.builder.AnalysisJobBuilder;
import org.eobjects.datacleaner.output.beans.OutputWriterAnalyzer;
import org.eobjects.datacleaner.user.UsageLogger;
import org.eobjects.datacleaner.widgets.DescriptorMenuItem;
import org.eobjects.datacleaner.widgets.DescriptorPopupMenu;

public final class AddAnalyzerActionListener implements ActionListener {

  private final AnalyzerBeansConfiguration _configuration;
  private final AnalysisJobBuilder _analysisJobBuilder;

  public AddAnalyzerActionListener(AnalyzerBeansConfiguration configuration, AnalysisJobBuilder analysisJobBuilder) {
    _configuration = configuration;
    _analysisJobBuilder = analysisJobBuilder;
  }

  @Override
  public void actionPerformed(ActionEvent e) {
    final Collection<AnalyzerBeanDescriptor<?>> descriptors = _configuration.getDescriptorProvider()
        .getAnalyzerBeanDescriptors();

    final JPopupMenu popup = new DescriptorPopupMenu<AnalyzerBeanDescriptor<?>>(descriptors) {

      private static final long serialVersionUID = 1L;

      @Override
      protected JMenuItem createMenuItem(final AnalyzerBeanDescriptor<?> descriptor) {
        if (descriptor.getAnnotation(OutputWriterAnalyzer.class) != null) {
          return null;
        }
        if (descriptor.isExploringAnalyzer()) {
          return null;
        }
        JMenuItem menuItem = new DescriptorMenuItem(descriptor);
        menuItem.addActionListener(new ActionListener() {
          @SuppressWarnings("unchecked")
          @Override
          public void actionPerformed(ActionEvent e) {
            Class<?> analyzerClass = descriptor.getComponentClass();
            if (descriptor.isExploringAnalyzer()) {
              _analysisJobBuilder.addExploringAnalyzer((Class<? extends ExploringAnalyzer<?>>) analyzerClass);
            } else {
              _analysisJobBuilder
                  .addRowProcessingAnalyzer((Class<? extends RowProcessingAnalyzer<?>>) analyzerClass);
            }

            UsageLogger.getInstance().log("Add analyzer: " + descriptor.getDisplayName());
          }
        });

        return menuItem;
      }
    };

    Component source = (Component) e.getSource();
    popup.show(source, 0, source.getHeight());
  }
}
TOP

Related Classes of org.eobjects.datacleaner.actions.AddAnalyzerActionListener

TOP
Copyright © 2018 www.massapi.com. 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.