Package org.intellij.erlang

Examples of org.intellij.erlang.ErlangFileType


      VirtualFile[] children = directory != null ? directory.getChildren() : null;

      if (children == null) return;

      for (VirtualFile child : children) {
        ErlangFileType childType = ErlangFileType.getFileType(child.getName());
        if (child.getName().startsWith(childPrefix) &&
            (child.isDirectory() || childType == ErlangFileType.HEADER || childType == ErlangFileType.MODULE)) {
          result.add(child);
        }
      }
View Full Code Here

TOP

Related Classes of org.intellij.erlang.ErlangFileType

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.