Package com.intellij.openapi.roots.ui.configuration

Examples of com.intellij.openapi.roots.ui.configuration.DefaultModuleConfigurationEditorFactory


        if (!(moduleType instanceof GoModuleType) &&
                !(moduleType instanceof GoAppEngineModuleType)) {
              return ModuleConfigurationEditor.EMPTY;
        }

        final DefaultModuleConfigurationEditorFactory editorFactory = DefaultModuleConfigurationEditorFactory.getInstance();
        List<ModuleConfigurationEditor> editors = new ArrayList<ModuleConfigurationEditor>();
        editors.add(editorFactory.createModuleContentRootsEditor(state));
        editors.add(editorFactory.createOutputEditor(state));
        editors.add(editorFactory.createClasspathEditor(state));
//        editors.add(new PluginModuleBuildConfEditor(state));

        return editors.toArray(new ModuleConfigurationEditor[editors.size()]);
    }
View Full Code Here


        if (!(moduleType instanceof RustModuleType)) {
              return ModuleConfigurationEditor.EMPTY;
        }

        final DefaultModuleConfigurationEditorFactory editorFactory = DefaultModuleConfigurationEditorFactory.getInstance();
        List<ModuleConfigurationEditor> editors = new ArrayList<ModuleConfigurationEditor>();
        editors.add(editorFactory.createModuleContentRootsEditor(state));
        editors.add(editorFactory.createOutputEditor(state));
        editors.add(editorFactory.createClasspathEditor(state));

        return editors.toArray(new ModuleConfigurationEditor[editors.size()]);
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.roots.ui.configuration.DefaultModuleConfigurationEditorFactory

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.