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

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


    if (ModuleType.get(module) != HaxeModuleType.getInstance()) {
      return ModuleConfigurationEditor.EMPTY;
    }
    return new ModuleConfigurationEditor[]{
      new CommonContentEntriesEditor(module.getName(), state, JavaSourceRootType.SOURCE, JavaSourceRootType.TEST_SOURCE),
      new ClasspathEditor(state),
      new HaxeModuleConfigurationEditor(state)
    };
  }
View Full Code Here


    Module module = state.getRootModel().getModule();
    if (ModuleType.get(module) instanceof ErlangModuleType) {
      return new ModuleConfigurationEditor[]{
        new ErlangContentEntriesEditor(module.getName(), state),
        new OutputEditorEx(state),
        new ClasspathEditor(state)
      };
    }
    return ModuleConfigurationEditor.EMPTY;
  }
View Full Code Here

TOP

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

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.