Examples of mapVirtualToReal()


Examples of com.intellij.coldFusion.UI.config.CfmlMappingsConfig.mapVirtualToReal()

      CfmlProjectConfiguration.State state = CfmlProjectConfiguration.getInstance(project).getState();
      CfmlMappingsConfig mappings = state != null ? state.getMapps().clone() : new CfmlMappingsConfig();
      adjustMappingsIfEmpty(mappings, originalFile.getProject());
      // addFakeMappingsForResolution(mappings);
      List<String> realPossiblePaths = mappings.mapVirtualToReal(directoryName);
      // Collections.sort(realPossiblePaths);

      final Collection<CfmlComponent> components = CfmlIndex.getInstance(project).getComponentsByName(
        componentName);
      components.addAll(CfmlIndex.getInstance(project).getInterfacesByName(
View Full Code Here

Examples of com.intellij.coldFusion.UI.config.CfmlMappingsConfig.mapVirtualToReal()

    CfmlMappingsConfig mappings = state != null ? state.getMapps().clone() : new CfmlMappingsConfig();

    adjustMappingsIfEmpty(mappings, getProject());
    addFakeMappingsForImports(mappings);

    List<String> realPossiblePaths = mappings.mapVirtualToReal(directoryName);

    for (String realPath : realPossiblePaths) {
      addVariantsFromPath(variants, directoryName, realPath);
    }
    for (String value : mappings.getServerMappings().keySet()) {
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.