Java Code Examples for com.intellij.execution.configurations.ModuleBasedConfiguration#setModule()

The following examples show how to use com.intellij.execution.configurations.ModuleBasedConfiguration#setModule() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XQueryRunConfigurationProducer.java    From intellij-xquery with Apache License 2.0 5 votes vote down vote up
private void setupConfigurationModule(@Nullable ConfigurationContext context,
                                      ModuleBasedConfiguration configuration) {
    if (context != null) {
        Module module = getModule(context, configuration);
        if (module != null) {
            configuration.setModule(module);
        }
    }
}
 
Example 2
Source File: ConfigurationModuleSelector.java    From intellij-xquery with Apache License 2.0 4 votes vote down vote up
public void applyTo(final ModuleBasedConfiguration configurationModule) {
    configurationModule.setModule((Module) myModulesList.getSelectedItem());
}