Examples of HaxeApplicationModuleBasedConfiguration


Examples of com.intellij.plugins.haxe.runner.HaxeApplicationModuleBasedConfiguration

*/
public class HXCPPRemoteDebugConfiguration extends ModuleBasedConfiguration<HaxeApplicationModuleBasedConfiguration>
  implements RunConfigurationWithSuppressedDefaultRunAction {

  public HXCPPRemoteDebugConfiguration(String name, Project project, HXCPPRemoteRunConfigurationType configurationType) {
    super(name, new HaxeApplicationModuleBasedConfiguration(project), configurationType.getConfigurationFactories()[0]);
  }
View Full Code Here

Examples of com.intellij.plugins.haxe.runner.HaxeApplicationModuleBasedConfiguration

  }

  @Override
  public void checkConfiguration() throws RuntimeConfigurationException {
    super.checkConfiguration();
    final HaxeApplicationModuleBasedConfiguration configurationModule = getConfigurationModule();
    final Module module = configurationModule.getModule();
    if (module == null) {
      throw new RuntimeConfigurationException(HaxeBundle.message("haxe.run.no.module", getName()));
    }
  }
View Full Code Here
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.