Package org.eobjects.datacleaner.actions

Examples of org.eobjects.datacleaner.actions.OpenAnalysisJobActionListener


  private JButton getOpenJobButton() {
    final JButton openJobButton = new JButton("Open analysis job");
    openJobButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        OpenAnalysisJobActionListener openAnalysisJobActionListener = _openAnalysisJobActionListenerProvider.get();
        openAnalysisJobActionListener.openFile(_file);
        _fileChooser.cancelSelection();
      }
    });
    return openJobButton;
  }
View Full Code Here


          }

          AnalysisJobBuilder ajb = reader.create(new BufferedInputStream(new FileInputStream(_file)),
              sourceColumnMapping, variableOverrides);
         
          OpenAnalysisJobActionListener openAnalysisJobActionListener = _openAnalysisJobActionListenerProvider.get();
          openAnalysisJobActionListener.openJob(_file, ajb);
         
          OpenAnalysisJobAsTemplateDialog.this.dispose();
        } catch (Exception e1) {
          throw new IllegalStateException(e1);
        }
View Full Code Here

TOP

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

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.