![JAR search and dependency download from the Maven repository](/logo.png)
org.easyb.idea.runner.EasybRunConfigurationDialog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellij-plugin Show documentation
Show all versions of intellij-plugin Show documentation
A plugin that enables easyb spec execution in IntelliJ
The newest version!
package org.easyb.idea.runner;
import java.awt.*;
import javax.swing.*;
public class EasybRunConfigurationDialog extends JPanel {
JTextField specificationPathField;
JComboBox moduleCombo;
DefaultComboBoxModel moduleComboModel;
public EasybRunConfigurationDialog() {
setLayout(new GridLayout(0, 1));
add(new JLabel("Specification path:"));
specificationPathField = new JTextField();
add(specificationPathField);
add(new JLabel("Choose classpath and jdk from module:"));
moduleComboModel = new DefaultComboBoxModel();
moduleCombo = new JComboBox(moduleComboModel);
add(moduleCombo);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy