Examples of ErlangContentEntriesEditor


Examples of org.intellij.erlang.roots.ErlangContentEntriesEditor

public class DefaultModuleEditorsProvider implements ModuleConfigurationEditorProvider {
  public ModuleConfigurationEditor[] createEditors(ModuleConfigurationState state) {
    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
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.