Package com.intellij.execution.ui

Examples of com.intellij.execution.ui.ConfigurationModuleSelector


  private Module myModuleContext;

  public CucumberJavaApplicationConfigurable(Project project) {
    myProject = project;
    myModuleSelector = new ConfigurationModuleSelector(project, myModule.getComponent());

    ClassBrowser.createApplicationClassBrowser(project, myModuleSelector).setField(myMainClass.getComponent());
    myModuleContext = myModuleSelector.getModule();

View Full Code Here


  private final ConfigurationModuleSelector moduleSelector;

  public RustRunSettingsEditor(Project project) {
    this.project = project;

    moduleSelector = new ConfigurationModuleSelector(project, cmbModule.getComponent());
    rustParametersPanel.setModuleContext(moduleSelector.getModule());
    cmbModule.getComponent().addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent actionEvent) {
        rustParametersPanel.setModuleContext(moduleSelector.getModule());
View Full Code Here

TOP

Related Classes of com.intellij.execution.ui.ConfigurationModuleSelector

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.