Examples of DependencyValidationManager


Examples of com.intellij.packageDependencies.DependencyValidationManager

    }
    final Element scopes = element.getChild(SCOPES);
    if (scopes != null) {
      final List children = scopes.getChildren(SCOPE);
      if (children != null) {
        final DependencyValidationManager holder = DependencyValidationManager.getInstance(myProject);
        for (Object s : children) {
          Element scopeElement = (Element)s;
          final String profile = scopeElement.getAttributeValue(PROFILE);
          if (profile != null && myProfiles.containsKey(profile)) {
            final NamedScope scope = holder.getScope(scopeElement.getAttributeValue(NAME));
            if (scope != null) {
              myScopeToProfileMap.put(scope, profile);
            }
          }
        }
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.