All Downloads are FREE. Search and download functionalities are using the official Maven repository.

weka.gui.knowledgeflow.steps.BlockStepEditorDialog Maven / Gradle / Ivy

Go to download

The Waikato Environment for Knowledge Analysis (WEKA), a machine learning workbench. This is the stable version. Apart from bugfixes, this version does not receive any other breaking updates.

There is a newer version: 3.8.6
Show newest version
/*
 *   This program is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation, either version 3 of the License, or
 *   (at your option) any later version.
 *
 *   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 General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program.  If not, see .
 */

/*
 *    BlockStepEditorDialog.java
 *    Copyright (C) 2016 University of Waikato, Hamilton, New Zealand
 *
 */

package weka.gui.knowledgeflow.steps;

import weka.gui.knowledgeflow.StepEditorDialog;
import weka.knowledgeflow.StepManager;
import weka.knowledgeflow.StepManagerImpl;
import weka.knowledgeflow.steps.Block;

import javax.swing.BorderFactory;
import javax.swing.JComboBox;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.util.List;

/**
 * Step editor dialog for the Block step
 *
 * @author Mark Hall (mhall{[at]}pentaho{[dot]}com)
 * @version $Revision: $
 */
public class BlockStepEditorDialog extends StepEditorDialog {

  private static final long serialVersionUID = 1183316309880876170L;

  /** The combo box for choosing the step to block on */
  protected JComboBox m_stepToBlockBox = new JComboBox();

  /**
   * Layout the component
   */
  @Override
  public void layoutEditor() {
    m_stepToBlockBox.setEditable(true);

    StepManager sm = getStepToEdit().getStepManager();
    List flowSteps =
      getMainPerspective().getCurrentLayout().getFlow().getSteps();
    for (StepManagerImpl smi : flowSteps) {
      m_stepToBlockBox.addItem(smi.getName());
    }

    JPanel p = new JPanel(new BorderLayout());
    p.setBorder(BorderFactory.createTitledBorder("Choose step to wait for"));
    p.add(m_stepToBlockBox, BorderLayout.NORTH);

    add(p, BorderLayout.CENTER);

    String userSelected = ((Block) getStepToEdit()).getStepToWaitFor();
    if (userSelected != null) {
      m_stepToBlockBox.setSelectedItem(userSelected);
    }
  }

  /**
   * Called when OK is pressed
   */
  @Override
  public void okPressed() {

    String selected = (String) m_stepToBlockBox.getSelectedItem();
    ((Block) getStepToEdit()).setStepToWaitFor(selected);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy