Package com.intellij.util.descriptors

Examples of com.intellij.util.descriptors.ConfigFileInfoSet


    if (webXmlUrl != null) {
      final VirtualFile root = model.getSourceRoots()[0];
      webFacet.addWebRoot(root, "/");

      final ConfigFileInfoSet descriptors = webFacet.getDescriptorsContainer().getConfiguration();
      descriptors.addConfigFile(DeploymentDescriptorsConstants.WEB_XML_META_DATA, webXmlUrl);

      for (String url : ModuleRootManager.getInstance(module).getSourceRootUrls()) {
        webFacet.addWebSourceRoot(url);
      }
    }
View Full Code Here

TOP

Related Classes of com.intellij.util.descriptors.ConfigFileInfoSet

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.